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

Unified Diff: test/copies/src/copies.gyp

Issue 1254413004: Adding framework path mapping for 'copies' action in gyp files. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Added tests to support Ninja and Make Created 5 years, 3 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/copies/src/copies.gyp
diff --git a/test/copies/src/copies.gyp b/test/copies/src/copies.gyp
index ce2e0cabca54313613c22828f21baa95500656b5..4773451e881c906130f1a0f76065663a05d9f1bc 100644
--- a/test/copies/src/copies.gyp
+++ b/test/copies/src/copies.gyp
@@ -28,6 +28,19 @@
},
],
},
+ # Copy file to BUILT FRAMEWORKS directory.
+ {
+ 'target_name': 'copies_framework',
+ 'type': 'none',
+ 'copies': [
+ {
+ 'destination': '<(FRAMEWORK_DIR)/copies-out/framework',
+ 'files': [
+ 'file1',
+ ],
+ },
+ ],
+ },
# Copy a directory tree.
{
'target_name': 'copies_recursive',
@@ -41,8 +54,9 @@
},
],
},
- # Copy a directory from deeper in the tree (this should not reproduce the
- # entire directory path in the destination, only the final directory).
+ # Copy a directory from deeper in the tree (this should not
+ # reproduce the entire directory path in the destination,
+ # only the final directory).
{
'target_name': 'copies_recursive_depth',
'type': 'none',

Powered by Google App Engine
This is Rietveld 408576698