OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 'components_browsertests_pak_input_resources': [ | 1457 'components_browsertests_pak_input_resources': [ |
1458 '<(PRODUCT_DIR)/components_tests_resources.pak', | 1458 '<(PRODUCT_DIR)/components_tests_resources.pak', |
1459 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', | 1459 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', |
1460 ], | 1460 ], |
1461 'conditions': [ | 1461 'conditions': [ |
1462 ['icu_use_data_file_flag==1', { | 1462 ['icu_use_data_file_flag==1', { |
1463 'components_browsertests_pak_input_resources': [ | 1463 'components_browsertests_pak_input_resources': [ |
1464 '<(PRODUCT_DIR)/icudtl.dat', | 1464 '<(PRODUCT_DIR)/icudtl.dat', |
1465 ], | 1465 ], |
1466 }], | 1466 }], |
| 1467 ['v8_use_external_startup_data==1', { |
| 1468 'components_browsertests_pak_input_resources': [ |
| 1469 '<(PRODUCT_DIR)/natives_blob.bin', |
| 1470 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 1471 ], |
| 1472 }], |
1467 ], | 1473 ], |
1468 }, | 1474 }, |
1469 'includes': ['../build/android/v8_external_startup_data_arch_suffix.gypi']
, | |
1470 'targets': [ | 1475 'targets': [ |
1471 { | 1476 { |
1472 'target_name': 'components_browsertests_paks_copy', | 1477 'target_name': 'components_browsertests_paks_copy', |
1473 'type': 'none', | 1478 'type': 'none', |
1474 'dependencies': [ | 1479 'dependencies': [ |
1475 'components_browsertests', | 1480 'components_browsertests', |
1476 ], | 1481 ], |
1477 'variables': { | 1482 'variables': { |
1478 'dest_path': '<(PRODUCT_DIR)/components_browsertests_apk_shell/asset
s', | 1483 'dest_path': '<(PRODUCT_DIR)/components_browsertests_apk_shell/asset
s', |
1479 'src_files': [ | 1484 'src_files': [ |
1480 '<@(components_browsertests_pak_input_resources)', | 1485 '<@(components_browsertests_pak_input_resources)', |
1481 ], | 1486 ], |
1482 'clear': 1, | 1487 'clear': 1, |
1483 'conditions': [ | |
1484 ['v8_use_external_startup_data==1', { | |
1485 'renaming_sources': [ | |
1486 '<(PRODUCT_DIR)/natives_blob.bin', | |
1487 '<(PRODUCT_DIR)/snapshot_blob.bin', | |
1488 ], | |
1489 'renaming_destinations': [ | |
1490 'natives_blob_<(arch_suffix).bin', | |
1491 'snapshot_blob_<(arch_suffix).bin', | |
1492 ], | |
1493 }], | |
1494 ], | |
1495 }, | 1488 }, |
1496 'includes': ['../build/android/copy_ex.gypi'], | 1489 'includes': ['../build/android/copy_ex.gypi'], |
1497 }, | 1490 }, |
1498 { | 1491 { |
1499 'target_name': 'components_browsertests_manifest', | 1492 'target_name': 'components_browsertests_manifest', |
1500 'type': 'none', | 1493 'type': 'none', |
1501 'variables': { | 1494 'variables': { |
1502 'jinja_inputs': ['test/android/browsertests_apk/AndroidManifest.xml.
jinja2'], | 1495 'jinja_inputs': ['test/android/browsertests_apk/AndroidManifest.xml.
jinja2'], |
1503 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/components_browsertests_
manifest/AndroidManifest.xml', | 1496 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/components_browsertests_
manifest/AndroidManifest.xml', |
1504 }, | 1497 }, |
(...skipping 19 matching lines...) Expand all Loading... |
1524 'resource_dir': 'test/android/browsertests_apk/res', | 1517 'resource_dir': 'test/android/browsertests_apk/res', |
1525 'asset_location': '<(PRODUCT_DIR)/components_browsertests_apk_shell/
assets', | 1518 'asset_location': '<(PRODUCT_DIR)/components_browsertests_apk_shell/
assets', |
1526 'conditions': [ | 1519 'conditions': [ |
1527 ['icu_use_data_file_flag==1', { | 1520 ['icu_use_data_file_flag==1', { |
1528 'additional_input_paths': [ | 1521 'additional_input_paths': [ |
1529 '<(asset_location)/icudtl.dat', | 1522 '<(asset_location)/icudtl.dat', |
1530 ], | 1523 ], |
1531 }], | 1524 }], |
1532 ['v8_use_external_startup_data==1', { | 1525 ['v8_use_external_startup_data==1', { |
1533 'additional_input_paths': [ | 1526 'additional_input_paths': [ |
1534 '<(asset_location)/natives_blob_<(arch_suffix).bin', | 1527 '<(asset_location)/natives_blob.bin', |
1535 '<(asset_location)/snapshot_blob_<(arch_suffix).bin', | 1528 '<(asset_location)/snapshot_blob.bin', |
1536 ], | 1529 ], |
1537 }], | 1530 }], |
1538 ], | 1531 ], |
1539 }, | 1532 }, |
1540 'includes': [ '../build/apk_browsertest.gypi' ], | 1533 'includes': [ '../build/apk_browsertest.gypi' ], |
1541 }, | 1534 }, |
1542 { | 1535 { |
1543 'target_name': 'components_unittests_apk', | 1536 'target_name': 'components_unittests_apk', |
1544 'isolate_file': 'components_unittests.isolate', | 1537 'isolate_file': 'components_unittests.isolate', |
1545 'type': 'none', | 1538 'type': 'none', |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1811 'dependencies': [ | 1804 'dependencies': [ |
1812 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1805 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1813 ], | 1806 ], |
1814 }], | 1807 }], |
1815 ], | 1808 ], |
1816 }, | 1809 }, |
1817 ], | 1810 ], |
1818 }], | 1811 }], |
1819 ], | 1812 ], |
1820 } | 1813 } |
OLD | NEW |