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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1411453004: Componentize internal class FlagsState in flags_ui component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@feature_entry
Patch Set: Fix build with gn and typo in gyp file Created 5 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
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this 7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this
8 # dependency is needed to make commit bots run unit_tests on 8 # dependency is needed to make commit bots run unit_tests on
9 # histograms.xml changes. 9 # histograms.xml changes.
10 '../tools/metrics/histograms/histograms.xml', 10 '../tools/metrics/histograms/histograms.xml',
(...skipping 2787 matching lines...) Expand 10 before | Expand all | Expand 10 after
2798 { 2798 {
2799 # GN: //chrome/test:chrome_app_unittests 2799 # GN: //chrome/test:chrome_app_unittests
2800 'target_name': 'chrome_app_unittests', 2800 'target_name': 'chrome_app_unittests',
2801 'type': 'executable', 2801 'type': 'executable',
2802 'dependencies': [ 2802 'dependencies': [
2803 # unit tests should only depend on 2803 # unit tests should only depend on
2804 # 1) everything that the chrome binaries depend on: 2804 # 1) everything that the chrome binaries depend on:
2805 '<@(chromium_browser_dependencies)', 2805 '<@(chromium_browser_dependencies)',
2806 '<@(chromium_child_dependencies)', 2806 '<@(chromium_child_dependencies)',
2807 '../components/components.gyp:crash_core_common', 2807 '../components/components.gyp:crash_core_common',
2808 '../components/components.gyp:flags_ui_switches',
2808 '../content/content.gyp:content_app_both', 2809 '../content/content.gyp:content_app_both',
2809 # 2) test-specific support libraries: 2810 # 2) test-specific support libraries:
2810 '../base/base.gyp:run_all_unittests', 2811 '../base/base.gyp:run_all_unittests',
2811 '../testing/gmock.gyp:gmock', 2812 '../testing/gmock.gyp:gmock',
2812 '../testing/gtest.gyp:gtest', 2813 '../testing/gtest.gyp:gtest',
2813 'test_support_common', 2814 'test_support_common',
2814 ], 2815 ],
2815 'include_dirs': [ 2816 'include_dirs': [
2816 '..', 2817 '..',
2817 ], 2818 ],
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
2981 'dependencies': [ 2982 'dependencies': [
2982 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2983 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2983 ], 2984 ],
2984 }], 2985 }],
2985 ], 2986 ],
2986 }, 2987 },
2987 ], 2988 ],
2988 }], 2989 }],
2989 ], # 'conditions' 2990 ], # 'conditions'
2990 } 2991 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698