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 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 'components_browsertests_pak_input_resources': [ | 1429 'components_browsertests_pak_input_resources': [ |
1430 '<(PRODUCT_DIR)/components_tests_resources.pak', | 1430 '<(PRODUCT_DIR)/components_tests_resources.pak', |
1431 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', | 1431 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', |
1432 ], | 1432 ], |
1433 'conditions': [ | 1433 'conditions': [ |
1434 ['icu_use_data_file_flag==1', { | 1434 ['icu_use_data_file_flag==1', { |
1435 'components_browsertests_pak_input_resources': [ | 1435 'components_browsertests_pak_input_resources': [ |
1436 '<(PRODUCT_DIR)/icudtl.dat', | 1436 '<(PRODUCT_DIR)/icudtl.dat', |
1437 ], | 1437 ], |
1438 }], | 1438 }], |
| 1439 ['v8_use_external_startup_data==1', { |
| 1440 'components_browsertests_pak_input_resources': [ |
| 1441 '<(PRODUCT_DIR)/natives_blob.bin', |
| 1442 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 1443 ], |
| 1444 }], |
1439 ], | 1445 ], |
1440 }, | 1446 }, |
1441 'targets': [ | 1447 'targets': [ |
1442 { | 1448 { |
1443 'target_name': 'components_browsertests_paks_copy', | 1449 'target_name': 'components_browsertests_paks_copy', |
1444 'type': 'none', | 1450 'type': 'none', |
1445 'dependencies': [ | 1451 'dependencies': [ |
1446 'components_browsertests', | 1452 'components_browsertests', |
1447 ], | 1453 ], |
1448 'variables': { | 1454 'copies': [ |
1449 'dest_path': '<(PRODUCT_DIR)/components_browsertests_apk_shell/asset
s', | 1455 { |
1450 'src_files': [ | 1456 'destination': '<(PRODUCT_DIR)/components_browsertests_apk_shell/a
ssets', |
1451 '<@(components_browsertests_pak_input_resources)', | 1457 'files': [ |
1452 ], | 1458 '<@(components_browsertests_pak_input_resources)', |
1453 'clear': 1, | 1459 ], |
1454 'conditions': [ | 1460 } |
1455 ['v8_use_external_startup_data==1', { | |
1456 'renaming_sources': [ | |
1457 '<(PRODUCT_DIR)/natives_blob.bin', | |
1458 '<(PRODUCT_DIR)/snapshot_blob.bin', | |
1459 ], | |
1460 'renaming_destinations': [ | |
1461 'natives_blob_<(arch_suffix).bin', | |
1462 'snapshot_blob_<(arch_suffix).bin', | |
1463 ], | |
1464 }], | |
1465 ], | |
1466 }, | |
1467 'includes': [ | |
1468 '../build/android/copy_ex.gypi', | |
1469 '../build/android/v8_external_startup_data_arch_suffix.gypi', | |
1470 ], | 1461 ], |
1471 }, | 1462 }, |
1472 { | 1463 { |
1473 'target_name': 'components_browsertests_manifest', | 1464 'target_name': 'components_browsertests_manifest', |
1474 'type': 'none', | 1465 'type': 'none', |
1475 'variables': { | 1466 'variables': { |
1476 'jinja_inputs': ['test/android/browsertests_apk/AndroidManifest.xml.
jinja2'], | 1467 'jinja_inputs': ['test/android/browsertests_apk/AndroidManifest.xml.
jinja2'], |
1477 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/components_browsertests_
manifest/AndroidManifest.xml', | 1468 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/components_browsertests_
manifest/AndroidManifest.xml', |
1478 }, | 1469 }, |
1479 'includes': [ '../build/android/jinja_template.gypi' ], | 1470 'includes': [ '../build/android/jinja_template.gypi' ], |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1783 'dependencies': [ | 1774 'dependencies': [ |
1784 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1775 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1785 ], | 1776 ], |
1786 }], | 1777 }], |
1787 ], | 1778 ], |
1788 }, | 1779 }, |
1789 ], | 1780 ], |
1790 }], | 1781 }], |
1791 ], | 1782 ], |
1792 } | 1783 } |
OLD | NEW |