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

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Fixed chrome/browser/ui/BUILD.gn 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../../chrome_browser_ui.gypi") ], 10 [ rebase_path("../../chrome_browser_ui.gypi") ],
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 sources += 184 sources +=
185 rebase_path(gypi_values.chrome_browser_ui_chromeos_non_official_sources, 185 rebase_path(gypi_values.chrome_browser_ui_chromeos_non_official_sources,
186 ".", 186 ".",
187 "//chrome") 187 "//chrome")
188 } 188 }
189 189
190 if (is_chromeos) { 190 if (is_chromeos) {
191 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_sources, 191 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_sources,
192 ".", 192 ".",
193 "//chrome") 193 "//chrome")
194 deps += [ "//chrome/browser/chromeos" ] 194 deps += [
195 "//chrome/browser/chromeos",
196 "//components/arc",
197 ]
195 } else { 198 } else {
196 defines += [ "FRAME_AVATAR_BUTTON=1" ] 199 defines += [ "FRAME_AVATAR_BUTTON=1" ]
197 } 200 }
198 if (use_cups) { 201 if (use_cups) {
199 configs += [ "//printing:cups" ] 202 configs += [ "//printing:cups" ]
200 } 203 }
201 if (use_ash) { 204 if (use_ash) {
202 sources += 205 sources +=
203 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") 206 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome")
204 deps += [ 207 deps += [
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 "//chrome/browser", 588 "//chrome/browser",
586 "//content/public/browser", 589 "//content/public/browser",
587 "//content/public/common", 590 "//content/public/common",
588 "//content/test:test_support", 591 "//content/test:test_support",
589 "//net:test_support", 592 "//net:test_support",
590 "//skia", 593 "//skia",
591 "//testing/gtest", 594 "//testing/gtest",
592 "//ui/base", 595 "//ui/base",
593 ] 596 ]
594 } 597 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698