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

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

Issue 734243003: Adding the chrome://copresence page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@state
Patch Set: Fixing BUILD.gn Created 6 years 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 # iOS. 122 # iOS.
123 sources += 123 sources +=
124 rebase_path(gypi_values.chrome_browser_ui_ios_sources, ".", "//chrome") 124 rebase_path(gypi_values.chrome_browser_ui_ios_sources, ".", "//chrome")
125 deps += [ "//net" ] 125 deps += [ "//net" ]
126 } 126 }
127 127
128 if (!is_android && !is_ios) { 128 if (!is_android && !is_ios) {
129 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, 129 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources,
130 ".", 130 ".",
131 "//chrome") 131 "//chrome")
132 deps += [ "//device/bluetooth" ] 132 deps += [ "//device/bluetooth", "//components/copresence" ]
sky 2014/12/06 21:19:49 I believe we wrap to multiple lines instead of one
Charlie 2014/12/08 05:37:57 Done.
133 } 133 }
134 134
135 if (enable_basic_printing || enable_print_preview) { 135 if (enable_basic_printing || enable_print_preview) {
136 deps += [ "//printing" ] 136 deps += [ "//printing" ]
137 } 137 }
138 138
139 if (enable_one_click_signin) { 139 if (enable_one_click_signin) {
140 sources += 140 sources +=
141 rebase_path(gypi_values.chrome_browser_ui_one_click_signin_sources, 141 rebase_path(gypi_values.chrome_browser_ui_one_click_signin_sources,
142 ".", 142 ".",
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 "//chrome/browser", 527 "//chrome/browser",
528 "//content/public/browser", 528 "//content/public/browser",
529 "//content/public/common", 529 "//content/public/common",
530 "//content/test:test_support", 530 "//content/test:test_support",
531 "//net:test_support", 531 "//net:test_support",
532 "//skia", 532 "//skia",
533 "//testing/gtest", 533 "//testing/gtest",
534 "//ui/base", 534 "//ui/base",
535 ] 535 ]
536 } 536 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/copresence.js ('k') | chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698