Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(856)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_android_paks.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 5 'variables': {
6 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after
1873 'sources': [ 1873 'sources': [
1874 '<@(chrome_browser_tests_sources)', 1874 '<@(chrome_browser_tests_sources)',
1875 '<@(chrome_browser_extensions_test_support_sources)', 1875 '<@(chrome_browser_extensions_test_support_sources)',
1876 'test/base/browser_tests_main.cc', 1876 'test/base/browser_tests_main.cc',
1877 ], 1877 ],
1878 'rules': [ 1878 'rules': [
1879 { 1879 {
1880 'rule_name': 'js2webui', 1880 'rule_name': 'js2webui',
1881 'extension': 'js', 1881 'extension': 'js',
1882 'msvs_external_rule': 1, 1882 'msvs_external_rule': 1,
1883 'variables': {
1884 'conditions': [
1885 ['v8_use_external_startup_data==1', {
1886 'external_v8': 'y',
1887 }, {
1888 'external_v8': 'n',
1889 }],
1890 ],
1891 },
1883 'inputs': [ 1892 'inputs': [
1884 '<(gypv8sh)', 1893 '<(gypv8sh)',
1885 '<(PRODUCT_DIR)/d8<(EXECUTABLE_SUFFIX)', 1894 '<(PRODUCT_DIR)/d8<(EXECUTABLE_SUFFIX)',
1886 '<(mock_js)', 1895 '<(mock_js)',
1887 '<(test_api_js)', 1896 '<(test_api_js)',
1888 '<(js2gtest)', 1897 '<(js2gtest)',
1889 ], 1898 ],
1890 'outputs': [ 1899 'outputs': [
1891 '<(INTERMEDIATE_DIR)/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT) -gen.cc', 1900 '<(INTERMEDIATE_DIR)/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT) -gen.cc',
1892 '<(PRODUCT_DIR)/test_data/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ ROOT).js', 1901 '<(PRODUCT_DIR)/test_data/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ ROOT).js',
1893 ], 1902 ],
1894 'process_outputs_as_sources': 1, 1903 'process_outputs_as_sources': 1,
1895 'action': [ 1904 'action': [
1896 'python', 1905 'python',
1897 '<@(_inputs)', 1906 '<@(_inputs)',
1907 '--external', '<(external_v8)',
1898 'webui', 1908 'webui',
1899 '<(RULE_INPUT_PATH)', 1909 '<(RULE_INPUT_PATH)',
1900 'chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js', 1910 'chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js',
1901 '<@(_outputs)', 1911 '<@(_outputs)',
1902 ], 1912 ],
1903 }, 1913 },
1904 ], 1914 ],
1905 'msvs_settings': { 1915 'msvs_settings': {
1906 'VCLinkerTool': { 1916 'VCLinkerTool': {
1907 'conditions': [ 1917 'conditions': [
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
2443 'HAS_OUT_OF_PROC_TEST_RUNNER', 2453 'HAS_OUT_OF_PROC_TEST_RUNNER',
2444 ], 2454 ],
2445 'sources': [ 2455 'sources': [
2446 '<@(performance_browser_tests_sources)', 2456 '<@(performance_browser_tests_sources)',
2447 ], 2457 ],
2448 'rules': [ 2458 'rules': [
2449 { 2459 {
2450 'rule_name': 'js2webui', 2460 'rule_name': 'js2webui',
2451 'extension': 'js', 2461 'extension': 'js',
2452 'msvs_external_rule': 1, 2462 'msvs_external_rule': 1,
2463 'variables': {
2464 'conditions': [
2465 ['v8_use_external_startup_data==1', {
2466 'external_v8': 'y',
2467 }, {
2468 'external_v8': 'n',
2469 }],
2470 ],
2471 },
2453 'inputs': [ 2472 'inputs': [
2454 '<(gypv8sh)', 2473 '<(gypv8sh)',
2455 '<(PRODUCT_DIR)/d8<(EXECUTABLE_SUFFIX)', 2474 '<(PRODUCT_DIR)/d8<(EXECUTABLE_SUFFIX)',
2456 '<(mock_js)', 2475 '<(mock_js)',
2457 '<(test_api_js)', 2476 '<(test_api_js)',
2458 '<(js2gtest)', 2477 '<(js2gtest)',
2459 ], 2478 ],
2460 'outputs': [ 2479 'outputs': [
2461 '<(INTERMEDIATE_DIR)/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT) -gen.cc', 2480 '<(INTERMEDIATE_DIR)/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT) -gen.cc',
2462 '<(PRODUCT_DIR)/test_data/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ ROOT).js', 2481 '<(PRODUCT_DIR)/test_data/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ ROOT).js',
2463 ], 2482 ],
2464 'process_outputs_as_sources': 1, 2483 'process_outputs_as_sources': 1,
2465 'action': [ 2484 'action': [
2466 'python', 2485 'python',
2467 '<@(_inputs)', 2486 '<@(_inputs)',
2468 'webui', 2487 'webui',
2488 '--external', '<(external_v8)',
2469 '<(RULE_INPUT_PATH)', 2489 '<(RULE_INPUT_PATH)',
2470 'chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js', 2490 'chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js',
2471 '<@(_outputs)', 2491 '<@(_outputs)',
2472 ], 2492 ],
2473 }, 2493 },
2474 ], 2494 ],
2475 'conditions': [ 2495 'conditions': [
2476 ['OS=="win"', { 2496 ['OS=="win"', {
2477 'sources': [ 2497 'sources': [
2478 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', 2498 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc',
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
3169 ['enable_webrtc==1', { 3189 ['enable_webrtc==1', {
3170 'dependencies': [ 3190 'dependencies': [
3171 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 3191 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
3172 ] 3192 ]
3173 }], 3193 }],
3174 ], 3194 ],
3175 }] 3195 }]
3176 }], 3196 }],
3177 ], # 'conditions' 3197 ], # 'conditions'
3178 } 3198 }
OLDNEW
« no previous file with comments | « chrome/chrome_android_paks.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698