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

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: 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
« 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 1509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1520 'net_java_test_support', 1520 'net_java_test_support',
1521 'net_unittests', 1521 'net_unittests',
1522 ], 1522 ],
1523 'conditions': [ 1523 'conditions': [
1524 ['v8_use_external_startup_data==1', { 1524 ['v8_use_external_startup_data==1', {
1525 'dependencies': [ 1525 'dependencies': [
1526 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', 1526 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1527 ], 1527 ],
1528 'variables': { 1528 'variables': {
1529 'dest_path': '<(asset_location)', 1529 'dest_path': '<(asset_location)',
1530 'src_files': [ 1530 'renaming_sources': [
1531 '<(PRODUCT_DIR)/natives_blob.bin', 1531 '<(PRODUCT_DIR)/natives_blob.bin',
1532 '<(PRODUCT_DIR)/snapshot_blob.bin', 1532 '<(PRODUCT_DIR)/snapshot_blob.bin',
1533 ], 1533 ],
1534 'renaming_destinations': [
1535 'natives_blob_<(arch_suffix).bin',
1536 'snapshot_blob_<(arch_suffix).bin',
1537 ],
1534 'clear': 1, 1538 'clear': 1,
1535 }, 1539 },
1536 'includes': ['../build/android/copy_ex.gypi'], 1540 'includes': ['../build/android/copy_ex.gypi'],
1537 }], 1541 }],
1538 ], 1542 ],
1539 'variables': { 1543 'variables': {
1540 'test_suite_name': 'net_unittests', 1544 'test_suite_name': 'net_unittests',
1541 'isolate_file': 'net_unittests.isolate', 1545 'isolate_file': 'net_unittests.isolate',
1542 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml', 1546 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml',
1543 'resource_dir': 'android/unittest_support/res', 1547 'resource_dir': 'android/unittest_support/res',
1544 'conditions': [ 1548 'conditions': [
1545 ['v8_use_external_startup_data==1', { 1549 ['v8_use_external_startup_data==1', {
1546 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets', 1550 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1547 'additional_input_paths': [ 1551 'additional_input_paths': [
1548 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob.bin', 1552 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob_<(arch_s uffix).bin',
1549 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin', 1553 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob_<(arch_ suffix).bin',
1550 ], 1554 ],
1551 }], 1555 }],
1552 ], 1556 ],
1553 }, 1557 },
1554 'includes': [ '../build/apk_test.gypi' ], 1558 'includes': [
1559 '../build/apk_test.gypi',
1560 '../build/android/v8_external_startup_data_arch_suffix.gypi',
1561 ],
1555 }, 1562 },
1556 { 1563 {
1557 'target_name': 'net_junit_tests', 1564 'target_name': 'net_junit_tests',
1558 'type': 'none', 1565 'type': 'none',
1559 'dependencies': [ 1566 'dependencies': [
1560 'net_java', 1567 'net_java',
1561 '../base/base.gyp:base', 1568 '../base/base.gyp:base',
1562 '../base/base.gyp:base_java_test_support', 1569 '../base/base.gyp:base_java_test_support',
1563 '../base/base.gyp:base_junit_test_support', 1570 '../base/base.gyp:base_junit_test_support',
1564 '../testing/android/junit/junit_test.gyp:junit_test_support', 1571 '../testing/android/junit/junit_test.gyp:junit_test_support',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1623 '../build/isolate.gypi', 1630 '../build/isolate.gypi',
1624 ], 1631 ],
1625 'sources': [ 1632 'sources': [
1626 'net_unittests.isolate', 1633 'net_unittests.isolate',
1627 ], 1634 ],
1628 }, 1635 },
1629 ], 1636 ],
1630 }], 1637 }],
1631 ], 1638 ],
1632 } 1639 }
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