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

Side by Side Diff: BUILD.gn

Issue 2476663002: Check for both use_ozone and is_chromeos for test. (Closed)
Patch Set: Created 4 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 | « no previous file | services/ui/display/BUILD.gn » ('j') | services/ui/display/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 "//services/navigation", 750 "//services/navigation",
751 "//services/preferences:tests", 751 "//services/preferences:tests",
752 "//services/ui/demo", 752 "//services/ui/demo",
753 "//services/ui/demo:mus_demo_unittests", 753 "//services/ui/demo:mus_demo_unittests",
754 "//services/ui/public/interfaces:ui_struct_traits_unittests", 754 "//services/ui/public/interfaces:ui_struct_traits_unittests",
755 "//services/ui/ws:tests", 755 "//services/ui/ws:tests",
756 "//ui/views/mus:views_mus_interactive_ui_tests", 756 "//ui/views/mus:views_mus_interactive_ui_tests",
757 "//ui/views/mus:views_mus_unittests", 757 "//ui/views/mus:views_mus_unittests",
758 ] 758 ]
759 759
760 if (use_ozone) { 760 if (use_ozone && is_chromeos) {
761 deps += [ "//services/ui/display:display_service_unittests" ] 761 deps += [ "//services/ui/display:display_service_unittests" ]
762 } 762 }
763 } 763 }
764 764
765 if (is_linux && !is_chromeos && !is_chromecast) { 765 if (is_linux && !is_chromeos && !is_chromecast) {
766 # TODO(GYP): Figure out if any of these should be in gn_all 766 # TODO(GYP): Figure out if any of these should be in gn_all
767 # and figure out how cross-platform they are 767 # and figure out how cross-platform they are
768 deps += [ 768 deps += [
769 ":gn_mojo_targets", 769 ":gn_mojo_targets",
770 "//chrome/browser/resources:extension_resource_demo", 770 "//chrome/browser/resources:extension_resource_demo",
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 "//ui/display:display_unittests", 1147 "//ui/display:display_unittests",
1148 "//ui/events:events_unittests", 1148 "//ui/events:events_unittests",
1149 "//ui/gfx:gfx_unittests", 1149 "//ui/gfx:gfx_unittests",
1150 "//ui/gl:gl_unittests", 1150 "//ui/gl:gl_unittests",
1151 "//ui/keyboard:keyboard_unittests", 1151 "//ui/keyboard:keyboard_unittests",
1152 "//ui/touch_selection:ui_touch_selection_unittests", 1152 "//ui/touch_selection:ui_touch_selection_unittests",
1153 "//url:url_unittests", 1153 "//url:url_unittests",
1154 ] 1154 ]
1155 } 1155 }
1156 } 1156 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/display/BUILD.gn » ('j') | services/ui/display/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698