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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1019123002: Switch ChromeOS and ChromeCast to use external V8 snapshot files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8_ext_chromeos
Patch Set: Rebase Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « chrome/tools/build/chromeos/FILES.cfg ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'cast_build_release': 'internal/build/cast_build_release', 9 'cast_build_release': 'internal/build/cast_build_release',
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 359
360 # Targets for Android receiver. 360 # Targets for Android receiver.
361 'conditions': [ 361 'conditions': [
362 ['OS=="android"', { 362 ['OS=="android"', {
363 'targets': [ 363 'targets': [
364 { 364 {
365 'target_name': 'cast_shell_icudata', 365 'target_name': 'cast_shell_icudata',
366 'type': 'none', 366 'type': 'none',
367 'dependencies': [ 367 'dependencies': [
368 '../third_party/icu/icu.gyp:icudata', 368 '../third_party/icu/icu.gyp:icudata',
369 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
369 ], 370 ],
370 'copies': [{ 371 'copies': [{
371 'destination': '<(PRODUCT_DIR)/assets', 372 'destination': '<(PRODUCT_DIR)/assets',
372 'files': ['<(PRODUCT_DIR)/icudtl.dat'], 373 'files': [
374 '<(PRODUCT_DIR)/icudtl.dat',
375 '<(PRODUCT_DIR)/natives_blob.bin',
376 '<(PRODUCT_DIR)/snapshot_blob.bin',
377 ],
373 }], 378 }],
374 }, 379 },
375 { 380 {
376 'target_name': 'libcast_shell_android', 381 'target_name': 'libcast_shell_android',
377 'type': 'shared_library', 382 'type': 'shared_library',
378 'dependencies': [ 383 'dependencies': [
379 'cast_jni_headers', 384 'cast_jni_headers',
380 'cast_shell_common', 385 'cast_shell_common',
381 'cast_shell_icudata', 386 'cast_shell_icudata',
382 'cast_shell_pak', 387 'cast_shell_pak',
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 # TODO(dougsteed): remove when Chromecast moves to boringssl. 581 # TODO(dougsteed): remove when Chromecast moves to boringssl.
577 # Allow the cast shell to find the NSS module in the same directory. 582 # Allow the cast shell to find the NSS module in the same directory.
578 'ldflags': [ 583 'ldflags': [
579 '-Wl,-rpath=\$$ORIGIN' 584 '-Wl,-rpath=\$$ORIGIN'
580 ], 585 ],
581 }, 586 },
582 ], # end of targets 587 ], # end of targets
583 }], 588 }],
584 ], # end of conditions 589 ], # end of conditions
585 } 590 }
OLDNEW
« no previous file with comments | « chrome/tools/build/chromeos/FILES.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698