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

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

Issue 1416373010: Implement a MusBrowserFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome
Patch Set: . 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
« no previous file with comments | « base/threading/thread_restrictions.h ('k') | chrome/browser/DEPS » ('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 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "//third_party/zlib:zip", 200 "//third_party/zlib:zip",
201 "//ui/base", 201 "//ui/base",
202 "//ui/events:events_base", 202 "//ui/events:events_base",
203 "//ui/gfx", 203 "//ui/gfx",
204 "//ui/gfx/geometry", 204 "//ui/gfx/geometry",
205 "//ui/message_center", 205 "//ui/message_center",
206 "//ui/shell_dialogs", 206 "//ui/shell_dialogs",
207 "//ui/strings", 207 "//ui/strings",
208 "//ui/resources", 208 "//ui/resources",
209 ] 209 ]
210 data_deps = []
210 211
211 sources += 212 sources +=
212 rebase_path(gypi_values.chrome_browser_undo_sources, ".", "//chrome") 213 rebase_path(gypi_values.chrome_browser_undo_sources, ".", "//chrome")
213 214
214 if (!is_ios) { 215 if (!is_ios) {
215 sources += 216 sources +=
216 rebase_path(gypi_values.chrome_browser_non_ios_sources, ".", "//chrome") 217 rebase_path(gypi_values.chrome_browser_non_ios_sources, ".", "//chrome")
217 sources += rebase_path(gypi_values.chrome_browser_autocomplete_sources, 218 sources += rebase_path(gypi_values.chrome_browser_autocomplete_sources,
218 ".", 219 ".",
219 "//chrome") 220 "//chrome")
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 } 568 }
568 if (use_aura) { 569 if (use_aura) {
569 sources += 570 sources +=
570 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") 571 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome")
571 572
572 # These files are only built in a GN build because they bring in 573 # These files are only built in a GN build because they bring in
573 # dependencies that don't build with GYP. 574 # dependencies that don't build with GYP.
574 sources += [ 575 sources += [
575 "mojo_runner_state.cc", 576 "mojo_runner_state.cc",
576 "mojo_runner_state.h", 577 "mojo_runner_state.h",
578 "ui/views/frame/browser_frame_mus.cc",
579 "ui/views/frame/browser_frame_mus.h",
577 ] 580 ]
578 deps += [ 581 deps += [
582 "//components/mus/public/interfaces",
579 "//mojo/runner/child:lib", 583 "//mojo/runner/child:lib",
584 "//mojo/converters/network",
580 "//ui/aura", 585 "//ui/aura",
581 "//ui/compositor", 586 "//ui/compositor",
582 "//ui/keyboard", 587 "//ui/keyboard",
583 "//ui/keyboard:keyboard_with_content", 588 "//ui/keyboard:keyboard_with_content",
589 "//ui/views/mus",
584 ] 590 ]
585 defines += [ "MOJO_RUNNER_CLIENT" ] 591 defines += [ "MOJO_RUNNER_CLIENT" ]
592 data_deps += [ "//components/mus/example/wm:example_wm" ]
586 } 593 }
587 if (ui_compositor_image_transport) { 594 if (ui_compositor_image_transport) {
588 deps += [ "//ui/gl" ] 595 deps += [ "//ui/gl" ]
589 } 596 }
590 597
591 if (use_ash) { 598 if (use_ash) {
592 sources += 599 sources +=
593 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") 600 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome")
594 } 601 }
595 602
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1255 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1262 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1256 deps = [ 1263 deps = [
1257 "//components/google/core/browser", 1264 "//components/google/core/browser",
1258 "//components/omnibox/browser", 1265 "//components/omnibox/browser",
1259 "//components/rlz", 1266 "//components/rlz",
1260 "//components/search_engines", 1267 "//components/search_engines",
1261 "//rlz:rlz_lib", 1268 "//rlz:rlz_lib",
1262 ] 1269 ]
1263 } 1270 }
1264 } 1271 }
OLDNEW
« no previous file with comments | « base/threading/thread_restrictions.h ('k') | chrome/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698