summaryrefslogtreecommitdiffstats
path: root/chromium/tools/gyp/test/msvs/buildevents/buildevents.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/gyp/test/msvs/buildevents/buildevents.gyp')
-rw-r--r--chromium/tools/gyp/test/msvs/buildevents/buildevents.gyp14
1 files changed, 14 insertions, 0 deletions
diff --git a/chromium/tools/gyp/test/msvs/buildevents/buildevents.gyp b/chromium/tools/gyp/test/msvs/buildevents/buildevents.gyp
new file mode 100644
index 00000000000..e0304dd5c61
--- /dev/null
+++ b/chromium/tools/gyp/test/msvs/buildevents/buildevents.gyp
@@ -0,0 +1,14 @@
+# Copyright (c) 2011 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'main',
+ 'type': 'executable',
+ 'sources': [ 'main.cc', ],
+ 'msvs_prebuild': r'echo starting',
+ 'msvs_postbuild': r'echo finished',
+ },
+ ],
+}