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

Side by Side Diff: BUILD.gn

Issue 949293004: Add media router common classes and unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bring GN files up to date. Created 5 years, 9 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/browser/media/router/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 (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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 } 117 }
118 118
119 if (use_aura) { 119 if (use_aura) {
120 deps += [ "//ui/wm:wm_unittests" ] 120 deps += [ "//ui/wm:wm_unittests" ]
121 } 121 }
122 122
123 if (use_ozone) { 123 if (use_ozone) {
124 deps += [ "//ui/ozone" ] 124 deps += [ "//ui/ozone" ]
125 } 125 }
126 126
127 if (enable_media_router) {
128 deps += [
129 "//chrome/browser/media/router/",
130 "//chrome/browser/media/router:unit_tests",
131 ]
132 }
133
127 if (is_win || is_mac || is_chromeos) { 134 if (is_win || is_mac || is_chromeos) {
128 # RLZ works on these platforms. 135 # RLZ works on these platforms.
129 # TODO(GYP): Is this target needed, or pulled in automatically? 136 # TODO(GYP): Is this target needed, or pulled in automatically?
130 deps += [ "//rlz:rlz_lib" ] 137 deps += [ "//rlz:rlz_lib" ]
131 } 138 }
132 139
133 if (is_android) { 140 if (is_android) {
134 deps += [ 141 deps += [
135 "//base/android/linker:chromium_android_linker", 142 "//base/android/linker:chromium_android_linker",
136 "//build/android/gyp/test:hello_world", 143 "//build/android/gyp/test:hello_world",
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 636 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
630 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 637 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
631 "//ui/wm:wm_unittests", # PASSES 2/25/2015 638 "//ui/wm:wm_unittests", # PASSES 2/25/2015
632 "//url:url_unittests", # PASSES 2/25/2015 639 "//url:url_unittests", # PASSES 2/25/2015
633 640
634 # Note: 641 # Note:
635 # (*) Fails but failures match GYP build at time of testing. 642 # (*) Fails but failures match GYP build at time of testing.
636 ] 643 ]
637 } 644 }
638 } 645 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media/router/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698