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

Side by Side Diff: net/net.gyp

Issue 1422793004: Reland Reland Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix dependences 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 # 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 1502 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 'net_java', 1513 'net_java',
1514 'net_javatests', 1514 'net_javatests',
1515 'net_java_test_support', 1515 'net_java_test_support',
1516 'net_unittests', 1516 'net_unittests',
1517 ], 1517 ],
1518 'conditions': [ 1518 'conditions': [
1519 ['v8_use_external_startup_data==1', { 1519 ['v8_use_external_startup_data==1', {
1520 'dependencies': [ 1520 'dependencies': [
1521 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', 1521 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1522 ], 1522 ],
1523 'copies': [ 1523 'variables': {
1524 { 1524 'dest_path': '<(asset_location)',
1525 'destination': '<(asset_location)', 1525 'renaming_sources': [
1526 'files': [ 1526 '<(PRODUCT_DIR)/natives_blob.bin',
1527 '<(PRODUCT_DIR)/natives_blob.bin', 1527 '<(PRODUCT_DIR)/snapshot_blob.bin',
1528 '<(PRODUCT_DIR)/snapshot_blob.bin', 1528 ],
1529 ], 1529 'renaming_destinations': [
1530 }, 1530 'natives_blob_<(arch_suffix).bin',
1531 ], 1531 'snapshot_blob_<(arch_suffix).bin',
1532 ],
1533 'clear': 1,
1534 },
1535 'includes': ['../build/android/copy_ex.gypi'],
1532 }], 1536 }],
1533 ], 1537 ],
1534 'variables': { 1538 'variables': {
1535 'test_suite_name': 'net_unittests', 1539 'test_suite_name': 'net_unittests',
1536 'isolate_file': 'net_unittests.isolate', 1540 'isolate_file': 'net_unittests.isolate',
1537 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml', 1541 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml',
1538 'resource_dir': 'android/unittest_support/res', 1542 'resource_dir': 'android/unittest_support/res',
1539 'conditions': [ 1543 'conditions': [
1540 ['v8_use_external_startup_data==1', { 1544 ['v8_use_external_startup_data==1', {
1541 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets', 1545 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1542 'additional_input_paths': [ 1546 'additional_input_paths': [
1543 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob.bin', 1547 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob_<(arch_s uffix).bin',
jbudorick 2015/10/26 23:02:04 <(asset_location)/natives_blob_<(arch_suffix).bin
michaelbai 2015/10/27 01:10:43 ditto
1544 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin', 1548 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob_<(arch_ suffix).bin',
jbudorick 2015/10/26 23:02:04 same
michaelbai 2015/10/27 01:10:43 ditto
1545 ], 1549 ],
1546 }], 1550 }],
1547 ], 1551 ],
1548 }, 1552 },
1549 'includes': [ '../build/apk_test.gypi' ], 1553 'includes': [
1554 '../build/apk_test.gypi',
1555 '../build/android/v8_external_startup_data_arch_suffix.gypi',
1556 ],
1550 }, 1557 },
1551 { 1558 {
1552 'target_name': 'net_junit_tests', 1559 'target_name': 'net_junit_tests',
1553 'type': 'none', 1560 'type': 'none',
1554 'dependencies': [ 1561 'dependencies': [
1555 'net_java', 1562 'net_java',
1556 '../base/base.gyp:base', 1563 '../base/base.gyp:base',
1557 '../base/base.gyp:base_java_test_support', 1564 '../base/base.gyp:base_java_test_support',
1558 '../base/base.gyp:base_junit_test_support', 1565 '../base/base.gyp:base_junit_test_support',
1559 '../testing/android/junit/junit_test.gyp:junit_test_support', 1566 '../testing/android/junit/junit_test.gyp:junit_test_support',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 '../build/isolate.gypi', 1625 '../build/isolate.gypi',
1619 ], 1626 ],
1620 'sources': [ 1627 'sources': [
1621 'net_unittests.isolate', 1628 'net_unittests.isolate',
1622 ], 1629 ],
1623 }, 1630 },
1624 ], 1631 ],
1625 }], 1632 }],
1626 ], 1633 ],
1627 } 1634 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698