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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8232032: Fix chrome_tests.gypi to depend up on d8#host and use d8 when generating c++ code from js. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'pyautolib_sources': [ 7 'pyautolib_sources': [
8 'app/chrome_command_ids.h', 8 'app/chrome_command_ids.h',
9 'app/chrome_dll_resource.h', 9 'app/chrome_dll_resource.h',
10 'common/automation_constants.h', 10 'common/automation_constants.h',
(...skipping 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 '../testing/gtest.gyp:gtest', 2223 '../testing/gtest.gyp:gtest',
2224 '../third_party/cld/cld.gyp:cld', 2224 '../third_party/cld/cld.gyp:cld',
2225 '../third_party/icu/icu.gyp:icui18n', 2225 '../third_party/icu/icu.gyp:icui18n',
2226 '../third_party/icu/icu.gyp:icuuc', 2226 '../third_party/icu/icu.gyp:icuuc',
2227 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 2227 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
2228 '../v8/tools/gyp/v8.gyp:v8', 2228 '../v8/tools/gyp/v8.gyp:v8',
2229 '../webkit/webkit.gyp:test_shell_test_support', 2229 '../webkit/webkit.gyp:test_shell_test_support',
2230 # Runtime dependencies 2230 # Runtime dependencies
2231 '../third_party/mesa/mesa.gyp:osmesa', 2231 '../third_party/mesa/mesa.gyp:osmesa',
2232 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:copy_TestNetsca pePlugIn', 2232 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:copy_TestNetsca pePlugIn',
2233 # build time dependency.
2234 '../v8/src/d8.gyp:d8#host',
2233 ], 2235 ],
2234 'include_dirs': [ 2236 'include_dirs': [
2235 '..', 2237 '..',
2236 ], 2238 ],
2237 'defines': [ 2239 'defines': [
2238 'HAS_OUT_OF_PROC_TEST_RUNNER', 2240 'HAS_OUT_OF_PROC_TEST_RUNNER',
2239 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"', 2241 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
2240 ], 2242 ],
2241 'sources': [ 2243 'sources': [
2242 'app/breakpad_mac_stubs.mm', 2244 'app/breakpad_mac_stubs.mm',
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
2529 '../content/test/render_widget_browsertest.h', 2531 '../content/test/render_widget_browsertest.h',
2530 '../content/test/test_launcher.cc', 2532 '../content/test/test_launcher.cc',
2531 '../content/test/test_launcher.h', 2533 '../content/test/test_launcher.h',
2532 ], 2534 ],
2533 'rules': [ 2535 'rules': [
2534 { 2536 {
2535 'rule_name': 'js2webui', 2537 'rule_name': 'js2webui',
2536 'extension': 'js', 2538 'extension': 'js',
2537 'inputs': [ 2539 'inputs': [
2538 '<(gypv8sh)', 2540 '<(gypv8sh)',
2539 '<(PRODUCT_DIR)/v8_shell<(EXECUTABLE_SUFFIX)', 2541 '<(PRODUCT_DIR)/d8<(EXECUTABLE_SUFFIX)',
2540 '<(mock_js)', 2542 '<(mock_js)',
2541 '<(test_api_js)', 2543 '<(test_api_js)',
2542 '<(js2webui)', 2544 '<(js2webui)',
2543 ], 2545 ],
2544 'outputs': [ 2546 'outputs': [
2545 '<(js2webui_out_dir)/chrome/<(rule_input_relpath)/<(RULE_INPUT_ROOT) .cc', 2547 '<(js2webui_out_dir)/chrome/<(rule_input_relpath)/<(RULE_INPUT_ROOT) .cc',
2546 ], 2548 ],
2547 'process_outputs_as_sources': 1, 2549 'process_outputs_as_sources': 1,
2548 'action': [ 2550 'action': [
2549 'python', '<@(_inputs)', '<(RULE_INPUT_PATH)', '<@(_outputs)', 2551 'python', '<@(_inputs)', '<(RULE_INPUT_PATH)', '<@(_outputs)',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
2736 'sources!': [ 2738 'sources!': [
2737 'browser/extensions/browser_action_test_util_views.cc', 2739 'browser/extensions/browser_action_test_util_views.cc',
2738 'browser/ui/panels/panel_browser_view_browsertest.cc', 2740 'browser/ui/panels/panel_browser_view_browsertest.cc',
2739 'browser/ui/views/browser_actions_container_browsertest.cc', 2741 'browser/ui/views/browser_actions_container_browsertest.cc',
2740 'browser/ui/views/dom_view_browsertest.cc', 2742 'browser/ui/views/dom_view_browsertest.cc',
2741 'browser/ui/views/html_dialog_view_browsertest.cc', 2743 'browser/ui/views/html_dialog_view_browsertest.cc',
2742 ], 2744 ],
2743 }], 2745 }],
2744 ['target_arch!="arm"', { 2746 ['target_arch!="arm"', {
2745 'dependencies': [ 2747 'dependencies': [
2746 # build time dependency.
2747 '../v8/tools/gyp/v8.gyp:v8_shell#host',
2748 # run time dependency 2748 # run time dependency
2749 '../webkit/webkit.gyp:copy_npapi_test_plugin', 2749 '../webkit/webkit.gyp:copy_npapi_test_plugin',
2750 ], 2750 ],
2751 }], 2751 }],
2752 ], # conditions 2752 ], # conditions
2753 }, # target browser_tests 2753 }, # target browser_tests
2754 { 2754 {
2755 # Executable that runs safebrowsing test in a new process. 2755 # Executable that runs safebrowsing test in a new process.
2756 'target_name': 'safe_browsing_tests', 2756 'target_name': 'safe_browsing_tests',
2757 'type': 'executable', 2757 'type': 'executable',
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after
4046 # Use outputs of this action as inputs for the main target build. 4046 # Use outputs of this action as inputs for the main target build.
4047 # Seems as a misnomer but makes this happy on Linux (scons). 4047 # Seems as a misnomer but makes this happy on Linux (scons).
4048 'process_outputs_as_sources': 1, 4048 'process_outputs_as_sources': 1,
4049 }, 4049 },
4050 ], # 'actions' 4050 ], # 'actions'
4051 }, 4051 },
4052 ] 4052 ]
4053 }], # 'coverage!=0' 4053 }], # 'coverage!=0'
4054 ], # 'conditions' 4054 ], # 'conditions'
4055 } 4055 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698