summaryrefslogtreecommitdiffstats
path: root/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /media/webrtc/trunk/tools/gyp/test/mac/bundle-resources
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/webrtc/trunk/tools/gyp/test/mac/bundle-resources')
-rwxr-xr-xmedia/webrtc/trunk/tools/gyp/test/mac/bundle-resources/change.sh3
-rwxr-xr-xmedia/webrtc/trunk/tools/gyp/test/mac/bundle-resources/executable-file.sh3
-rw-r--r--media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/secret.txt1
-rw-r--r--media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/test.gyp59
4 files changed, 66 insertions, 0 deletions
diff --git a/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/change.sh b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/change.sh
new file mode 100755
index 000000000..6d0fe6c7c
--- /dev/null
+++ b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/change.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+tr a-z A-Z < "${1}" > "${2}"
diff --git a/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/executable-file.sh b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/executable-file.sh
new file mode 100755
index 000000000..796953a1a
--- /dev/null
+++ b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/executable-file.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+echo echo echo echo cho ho o o
diff --git a/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/secret.txt b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/secret.txt
new file mode 100644
index 000000000..8baef1b4a
--- /dev/null
+++ b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/secret.txt
@@ -0,0 +1 @@
+abc
diff --git a/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/test.gyp b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/test.gyp
new file mode 100644
index 000000000..af034ce3f
--- /dev/null
+++ b/media/webrtc/trunk/tools/gyp/test/mac/bundle-resources/test.gyp
@@ -0,0 +1,59 @@
+# Copyright (c) 2013 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': 'resource',
+ 'type': 'executable',
+ 'mac_bundle': 1,
+ 'mac_bundle_resources': [
+ 'secret.txt',
+ 'executable-file.sh',
+ ],
+ },
+ # A rule with process_outputs_as_mac_bundle_resources should copy files
+ # into the Resources folder.
+ {
+ 'target_name': 'source_rule',
+ 'type': 'executable',
+ 'mac_bundle': 1,
+ 'sources': [
+ 'secret.txt',
+ ],
+ 'rules': [
+ {
+ 'rule_name': 'bundlerule',
+ 'extension': 'txt',
+ 'outputs': [
+ '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).txt',
+ ],
+ 'action': ['./change.sh', '<(RULE_INPUT_PATH)', '<@(_outputs)'],
+ 'message': 'Running rule on <(RULE_INPUT_PATH)',
+ 'process_outputs_as_mac_bundle_resources': 1,
+ },
+ ],
+ },
+ # So should an ordinary rule acting on mac_bundle_resources.
+ {
+ 'target_name': 'resource_rule',
+ 'type': 'executable',
+ 'mac_bundle': 1,
+ 'mac_bundle_resources': [
+ 'secret.txt',
+ ],
+ 'rules': [
+ {
+ 'rule_name': 'bundlerule',
+ 'extension': 'txt',
+ 'outputs': [
+ '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).txt',
+ ],
+ 'action': ['./change.sh', '<(RULE_INPUT_PATH)', '<@(_outputs)'],
+ 'message': 'Running rule on <(RULE_INPUT_PATH)',
+ },
+ ],
+ },
+ ],
+}
+