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

Side by Side Diff: net/net.gyp

Issue 1400953002: Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « gin/v8_initializer.cc ('k') | third_party/WebKit/Source/platform/blink_platform_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromium_code': 1, 7 'chromium_code': 1,
8 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after
1512 'net_java', 1512 'net_java',
1513 'net_javatests', 1513 'net_javatests',
1514 'net_java_test_support', 1514 'net_java_test_support',
1515 'net_unittests', 1515 'net_unittests',
1516 ], 1516 ],
1517 'conditions': [ 1517 'conditions': [
1518 ['v8_use_external_startup_data==1', { 1518 ['v8_use_external_startup_data==1', {
1519 'dependencies': [ 1519 'dependencies': [
1520 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', 1520 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1521 ], 1521 ],
1522 'copies': [ 1522 'variables': {
1523 { 1523 'dest_path': '<(asset_location)',
1524 'destination': '<(asset_location)', 1524 'renaming_sources': [
1525 'files': [ 1525 '<(PRODUCT_DIR)/natives_blob.bin',
1526 '<(PRODUCT_DIR)/natives_blob.bin', 1526 '<(PRODUCT_DIR)/snapshot_blob.bin',
1527 '<(PRODUCT_DIR)/snapshot_blob.bin', 1527 ],
1528 ], 1528 'renaming_destinations': [
1529 }, 1529 'natives_blob_<(arch_suffix).bin',
1530 ], 1530 'snapshot_blob_<(arch_suffix).bin',
1531 ],
1532 'clear': 1,
1533 },
1534 'includes': ['../build/android/copy_ex.gypi'],
1531 }], 1535 }],
1532 ], 1536 ],
1533 'variables': { 1537 'variables': {
1534 'test_suite_name': 'net_unittests', 1538 'test_suite_name': 'net_unittests',
1535 'isolate_file': 'net_unittests.isolate', 1539 'isolate_file': 'net_unittests.isolate',
1536 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml', 1540 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml',
1537 'resource_dir': 'android/unittest_support/res', 1541 'resource_dir': 'android/unittest_support/res',
1538 'conditions': [ 1542 'conditions': [
1539 ['v8_use_external_startup_data==1', { 1543 ['v8_use_external_startup_data==1', {
1540 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets', 1544 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1541 'additional_input_paths': [ 1545 'additional_input_paths': [
1542 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob.bin', 1546 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob_<(arch_s uffix).bin',
1543 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin', 1547 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob_<(arch_ suffix).bin',
1544 ], 1548 ],
1545 }], 1549 }],
1546 ], 1550 ],
1547 }, 1551 },
1548 'includes': [ '../build/apk_test.gypi' ], 1552 'includes': [
1553 '../build/apk_test.gypi',
1554 '../build/android/v8_external_startup_data_arch_suffix.gypi',
1555 ],
1549 }, 1556 },
1550 { 1557 {
1551 'target_name': 'net_junit_tests', 1558 'target_name': 'net_junit_tests',
1552 'type': 'none', 1559 'type': 'none',
1553 'dependencies': [ 1560 'dependencies': [
1554 'net_java', 1561 'net_java',
1555 '../base/base.gyp:base', 1562 '../base/base.gyp:base',
1556 '../base/base.gyp:base_java_test_support', 1563 '../base/base.gyp:base_java_test_support',
1557 '../base/base.gyp:base_junit_test_support', 1564 '../base/base.gyp:base_junit_test_support',
1558 '../testing/android/junit/junit_test.gyp:junit_test_support', 1565 '../testing/android/junit/junit_test.gyp:junit_test_support',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1617 '../build/isolate.gypi', 1624 '../build/isolate.gypi',
1618 ], 1625 ],
1619 'sources': [ 1626 'sources': [
1620 'net_unittests.isolate', 1627 'net_unittests.isolate',
1621 ], 1628 ],
1622 }, 1629 },
1623 ], 1630 ],
1624 }], 1631 }],
1625 ], 1632 ],
1626 } 1633 }
OLDNEW
« no previous file with comments | « gin/v8_initializer.cc ('k') | third_party/WebKit/Source/platform/blink_platform_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698