Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(611)

Unified Diff: test/msvs/prebuild/base/base.gyp

Issue 2866042: Effectively duplicates targets that contain rules/actions, therefore enabling... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/msvs/prebuild/base/base.gyp
===================================================================
--- test/msvs/prebuild/base/base.gyp (revision 0)
+++ test/msvs/prebuild/base/base.gyp (revision 0)
@@ -0,0 +1,52 @@
+# Copyright (c) 2010 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': 'a',
+ 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530',
Mark Mentovai 2010/07/07 17:45:28 Not needed (throughout this file).
+ 'type': 'static_library',
+ 'sources': [
+ 'a.c',
+ ],
+ 'actions': [ {
+ 'inputs': [ 'a.idl' ],
+ 'outputs': [ 'idl_a.c' ],
+ 'action': 'cp a.idl idl_a.c',
+ 'action_name': 'idl',
+ 'process_outputs_as_sources': '1',
+ },
+ ],
+ },
+ {
+ 'target_name': 'b',
+ 'msvs_guid': 'B4D59AE8-97E1-8D2F-A8E9-6D2826729530',
+ 'type': 'static_library',
+ 'sources': [
+ 'b.c',
+ ],
+ 'actions': [ {
+ 'inputs': [ 'b.idl' ],
+ 'outputs': [ 'idl_b.c' ],
+ 'action': 'cp b.idl idl_b.c',
+ 'action_name': 'idl',
+ },
+ ],
+ },
+ {
+ 'target_name': 'c',
+ 'msvs_guid': 'B4D59AE8-8D2E-97E1-A8E9-6D2826729530',
+ 'type': 'none',
+ 'actions': [ {
+ 'inputs': [ 'c.idl' ],
+ 'outputs': [ 'idl_c.c' ],
+ 'action': 'cp c.idl idl_c.c',
+ 'action_name': 'idl',
+ 'process_outputs_as_sources': '1',
+ },
+ ],
+ },
+ ],
+}
Property changes on: test/msvs/prebuild/base/base.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698