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