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

Side by Side Diff: third_party/WebKit/Source/platform/blink_platform_tests.gyp

Issue 1424983004: Using copy_ex to copy assets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remvoe build log Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'dependencies': [ 137 'dependencies': [
138 '<(DEPTH)/base/base.gyp:base_java', 138 '<(DEPTH)/base/base.gyp:base_java',
139 '<(DEPTH)/net/net.gyp:net_java', 139 '<(DEPTH)/net/net.gyp:net_java',
140 'blink_heap_unittests', 140 'blink_heap_unittests',
141 ], 141 ],
142 'conditions': [ 142 'conditions': [
143 ['v8_use_external_startup_data==1', { 143 ['v8_use_external_startup_data==1', {
144 'dependencies': [ 144 'dependencies': [
145 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snapshot', 145 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snapshot',
146 ], 146 ],
147 'copies': [ 147 'variables': {
148 { 148 'dest_path': '<(asset_location)',
149 'destination': '<(asset_location)', 149 'src_files': [
150 'files': [ 150 '<(PRODUCT_DIR)/natives_blob.bin',
151 '<(PRODUCT_DIR)/natives_blob.bin', 151 '<(PRODUCT_DIR)/snapshot_blob.bin',
152 '<(PRODUCT_DIR)/snapshot_blob.bin', 152 ],
153 ], 153 'clear': 1,
154 }, 154 },
155 ], 155 'includes': ['../../../../build/android/copy_ex.gypi'],
156 }], 156 }],
157 ], 157 ],
158 'variables': { 158 'variables': {
159 'test_suite_name': 'blink_heap_unittests', 159 'test_suite_name': 'blink_heap_unittests',
160 'conditions': [ 160 'conditions': [
161 ['v8_use_external_startup_data==1', { 161 ['v8_use_external_startup_data==1', {
162 'asset_location': '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets' , 162 'asset_location': '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets' ,
163 'additional_input_paths': [ 163 'additional_input_paths': [
164 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/natives_blob.bin ', 164 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/natives_blob.bin ',
165 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/snapshot_blob.bi n', 165 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/snapshot_blob.bi n',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 '../../../../build/isolate.gypi', 208 '../../../../build/isolate.gypi',
209 ], 209 ],
210 'sources': [ 210 'sources': [
211 'blink_platform_unittests.isolate', 211 'blink_platform_unittests.isolate',
212 ], 212 ],
213 } 213 }
214 ], 214 ],
215 }], 215 }],
216 ], 216 ],
217 } 217 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698