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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 2035083003: mac/gn: Build performance_browser_tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('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 'build_angle_deqp_tests%': 0, 6 'build_angle_deqp_tests%': 0,
7 'chrome_browser_extensions_test_support_sources': [ 7 'chrome_browser_extensions_test_support_sources': [
8 # A list of sources which is shared between different browser tests. 8 # A list of sources which is shared between different browser tests.
9 'browser/apps/app_browsertest_util.cc', 9 'browser/apps/app_browsertest_util.cc',
10 'browser/apps/app_browsertest_util.h', 10 'browser/apps/app_browsertest_util.h',
(...skipping 2768 matching lines...) Expand 10 before | Expand all | Expand 10 after
2779 ], 2779 ],
2780 'include_dirs': [ 2780 'include_dirs': [
2781 '..', 2781 '..',
2782 ], 2782 ],
2783 'defines': [ 2783 'defines': [
2784 'HAS_OUT_OF_PROC_TEST_RUNNER', 2784 'HAS_OUT_OF_PROC_TEST_RUNNER',
2785 ], 2785 ],
2786 'sources': [ 2786 'sources': [
2787 '<@(performance_browser_tests_sources)', 2787 '<@(performance_browser_tests_sources)',
2788 ], 2788 ],
2789 'rules': [
2790 {
2791 'rule_name': 'js2webui',
2792 'extension': 'js',
2793 'msvs_external_rule': 1,
2794 'variables': {
2795 'conditions': [
2796 ['v8_use_external_startup_data==1', {
2797 'external_v8': 'y',
2798 }, {
2799 'external_v8': 'n',
2800 }],
2801 ],
2802 },
2803 'inputs': [
2804 '<(gypv8sh)',
2805 '<(PRODUCT_DIR)/v8_shell<(EXECUTABLE_SUFFIX)',
2806 '<(mock_js)',
2807 '<(test_api_js)',
2808 '<(js2gtest)',
2809 ],
2810 'outputs': [
2811 '<(INTERMEDIATE_DIR)/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT) -gen.cc',
2812 '<(PRODUCT_DIR)/test_data/chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ ROOT).js',
2813 ],
2814 'process_outputs_as_sources': 1,
2815 'action': [
2816 'python',
2817 '<@(_inputs)',
2818 'webui',
2819 '--external', '<(external_v8)',
2820 '<(RULE_INPUT_PATH)',
2821 'chrome/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js',
2822 '<@(_outputs)',
2823 ],
2824 },
2825 ],
2826 'conditions': [ 2789 'conditions': [
2827 ['OS=="win"', { 2790 ['OS=="win"', {
2828 'sources': [ 2791 'sources': [
2829 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', 2792 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc',
2830 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', 2793 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc',
2831 ], 2794 ],
2832 'include_dirs': [ 2795 'include_dirs': [
2833 '<(DEPTH)/third_party/wtl/include', 2796 '<(DEPTH)/third_party/wtl/include',
2834 ], 2797 ],
2835 'dependencies': [ 2798 'dependencies': [
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
3612 'browser', 3575 'browser',
3613 ], 3576 ],
3614 'sources': [ 3577 'sources': [
3615 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3578 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3616 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3579 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3617 ], 3580 ],
3618 }] 3581 }]
3619 }], 3582 }],
3620 ], # 'conditions' 3583 ], # 'conditions'
3621 } 3584 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698