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