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

Side by Side Diff: net/net.gyp

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