OLD | NEW |
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 Loading... |
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', |
1544 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin', | 1548 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob_<(arch_
suffix).bin', |
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 Loading... |
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 } |
OLD | NEW |