diff options
Diffstat (limited to 'media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir')
5 files changed, 42 insertions, 0 deletions
diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/build/README.txt b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/build/README.txt new file mode 100644 index 000000000..90ef88619 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/build/README.txt @@ -0,0 +1,4 @@ +A place-holder for this Xcode build output directory, so that the +test script can verify that .xcodeproj files are not created in +their normal location by making the src/ read-only, and then +selectively making this build directory writable. diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/copies-out/README.txt b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/copies-out/README.txt new file mode 100644 index 000000000..90ef88619 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/copies-out/README.txt @@ -0,0 +1,4 @@ +A place-holder for this Xcode build output directory, so that the +test script can verify that .xcodeproj files are not created in +their normal location by making the src/ read-only, and then +selectively making this build directory writable. diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file3 b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file3 new file mode 100644 index 000000000..43f16f352 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file3 @@ -0,0 +1 @@ +file3 contents diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file4 b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file4 new file mode 100644 index 000000000..5f7270a08 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file4 @@ -0,0 +1 @@ +file4 contents diff --git a/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/subdir.gyp b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/subdir.gyp new file mode 100644 index 000000000..af031d283 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/subdir.gyp @@ -0,0 +1,32 @@ +# Copyright (c) 2009 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': 'copies3', + 'type': 'none', + 'copies': [ + { + 'destination': 'copies-out', + 'files': [ + 'file3', + ], + }, + ], + }, + { + 'target_name': 'copies4', + 'type': 'none', + 'copies': [ + { + 'destination': '<(PRODUCT_DIR)/copies-out', + 'files': [ + 'file4', + ], + }, + ], + }, + ], +} |