summaryrefslogtreecommitdiffstats
path: root/chromium/tools/gyp/test/win/win-tool/copies_readonly_files.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/gyp/test/win/win-tool/copies_readonly_files.gyp')
-rw-r--r--chromium/tools/gyp/test/win/win-tool/copies_readonly_files.gyp29
1 files changed, 29 insertions, 0 deletions
diff --git a/chromium/tools/gyp/test/win/win-tool/copies_readonly_files.gyp b/chromium/tools/gyp/test/win/win-tool/copies_readonly_files.gyp
new file mode 100644
index 00000000000..3cd7e69f1a2
--- /dev/null
+++ b/chromium/tools/gyp/test/win/win-tool/copies_readonly_files.gyp
@@ -0,0 +1,29 @@
+{
+ 'targets': [
+ {
+ 'target_name': 'foo',
+ 'type': 'none',
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)/dest',
+ 'files': [
+ 'read-only-file',
+ ],
+ },
+ ],
+ }, # target: foo
+
+ {
+ 'target_name': 'bar',
+ 'type': 'none',
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)/dest',
+ 'files': [
+ 'subdir/',
+ ],
+ },
+ ],
+ }, # target: bar
+ ],
+}