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 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1442 'components_browsertests_pak_input_resources': [ | 1442 'components_browsertests_pak_input_resources': [ |
1443 '<(PRODUCT_DIR)/components_tests_resources.pak', | 1443 '<(PRODUCT_DIR)/components_tests_resources.pak', |
1444 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', | 1444 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', |
1445 ], | 1445 ], |
1446 'conditions': [ | 1446 'conditions': [ |
1447 ['icu_use_data_file_flag==1', { | 1447 ['icu_use_data_file_flag==1', { |
1448 'components_browsertests_pak_input_resources': [ | 1448 'components_browsertests_pak_input_resources': [ |
1449 '<(PRODUCT_DIR)/icudtl.dat', | 1449 '<(PRODUCT_DIR)/icudtl.dat', |
1450 ], | 1450 ], |
1451 }], | 1451 }], |
1452 ['v8_use_external_startup_data==1', { | |
1453 'components_browsertests_pak_input_resources': [ | |
1454 '<(PRODUCT_DIR)/natives_blob.bin', | |
1455 '<(PRODUCT_DIR)/snapshot_blob.bin', | |
1456 ], | |
1457 }], | |
1458 ], | 1452 ], |
1459 }, | 1453 }, |
1460 'targets': [ | 1454 'targets': [ |
1461 { | 1455 { |
1462 'target_name': 'components_browsertests_paks_copy', | 1456 'target_name': 'components_browsertests_paks_copy', |
1463 'type': 'none', | 1457 'type': 'none', |
1464 'dependencies': [ | 1458 'dependencies': [ |
1465 'components_browsertests', | 1459 'components_browsertests', |
1466 ], | 1460 ], |
1467 'copies': [ | 1461 'variables': { |
1468 { | 1462 'dest_path': '<(PRODUCT_DIR)/components_browsertests_apk_shell/asset
s', |
1469 'destination': '<(PRODUCT_DIR)/components_browsertests_apk_shell/a
ssets', | 1463 'src_files': [ |
1470 'files': [ | 1464 '<@(components_browsertests_pak_input_resources)', |
1471 '<@(components_browsertests_pak_input_resources)', | 1465 ], |
1472 ], | 1466 'clear': 1, |
1473 } | 1467 'conditions': [ |
| 1468 ['v8_use_external_startup_data==1', { |
| 1469 'renaming_sources': [ |
| 1470 '<(PRODUCT_DIR)/natives_blob.bin', |
| 1471 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 1472 ], |
| 1473 'renaming_destinations': [ |
| 1474 'natives_blob_<(arch_suffix).bin', |
| 1475 'snapshot_blob_<(arch_suffix).bin', |
| 1476 ], |
| 1477 }], |
| 1478 ], |
| 1479 }, |
| 1480 'includes': [ |
| 1481 '../build/android/copy_ex.gypi', |
| 1482 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
1474 ], | 1483 ], |
1475 }, | 1484 }, |
1476 { | 1485 { |
1477 'target_name': 'components_browsertests_manifest', | 1486 'target_name': 'components_browsertests_manifest', |
1478 'type': 'none', | 1487 'type': 'none', |
1479 'variables': { | 1488 'variables': { |
1480 'jinja_inputs': ['test/android/browsertests_apk/AndroidManifest.xml.
jinja2'], | 1489 'jinja_inputs': ['test/android/browsertests_apk/AndroidManifest.xml.
jinja2'], |
1481 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/components_browsertests_
manifest/AndroidManifest.xml', | 1490 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/components_browsertests_
manifest/AndroidManifest.xml', |
1482 }, | 1491 }, |
1483 'includes': [ '../build/android/jinja_template.gypi' ], | 1492 'includes': [ '../build/android/jinja_template.gypi' ], |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1789 'dependencies': [ | 1798 'dependencies': [ |
1790 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1799 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1791 ], | 1800 ], |
1792 }], | 1801 }], |
1793 ], | 1802 ], |
1794 }, | 1803 }, |
1795 ], | 1804 ], |
1796 }], | 1805 }], |
1797 ], | 1806 ], |
1798 } | 1807 } |
OLD | NEW |