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

Side by Side Diff: net/net.gyp

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