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

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
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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 } 566 }
567 if (use_aura) { 567 if (use_aura) {
568 sources += 568 sources +=
569 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") 569 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome")
570 570
571 # These files are only built in a GN build because they bring in 571 # These files are only built in a GN build because they bring in
572 # dependencies that don't build with GYP. 572 # dependencies that don't build with GYP.
573 sources += [ 573 sources += [
574 "mojo_runner_state.cc", 574 "mojo_runner_state.cc",
575 "mojo_runner_state.h", 575 "mojo_runner_state.h",
576 "ui/views/frame/mus_browser_frame.cc",
577 "ui/views/frame/mus_browser_frame.h",
576 ] 578 ]
577 deps += [ 579 deps += [
580 "//components/mus/public/interfaces",
sky 2015/11/06 17:07:46 Seems like this will effect the size of the offici
578 "//mojo/runner/child:lib", 581 "//mojo/runner/child:lib",
582 "//mojo/converters/network",
579 "//ui/aura", 583 "//ui/aura",
580 "//ui/compositor", 584 "//ui/compositor",
581 "//ui/keyboard", 585 "//ui/keyboard",
582 "//ui/keyboard:keyboard_with_content", 586 "//ui/keyboard:keyboard_with_content",
587 "//ui/views/mus",
583 ] 588 ]
584 defines += [ "MOJO_RUNNER_CLIENT" ] 589 defines += [ "MOJO_RUNNER_CLIENT" ]
585 } 590 }
586 if (ui_compositor_image_transport) { 591 if (ui_compositor_image_transport) {
587 deps += [ "//ui/gl" ] 592 deps += [ "//ui/gl" ]
588 } 593 }
589 594
590 if (use_ash) { 595 if (use_ash) {
591 sources += 596 sources +=
592 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") 597 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome")
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
1254 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1259 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1255 deps = [ 1260 deps = [
1256 "//components/google/core/browser", 1261 "//components/google/core/browser",
1257 "//components/omnibox/browser", 1262 "//components/omnibox/browser",
1258 "//components/rlz", 1263 "//components/rlz",
1259 "//components/search_engines", 1264 "//components/search_engines",
1260 "//rlz:rlz_lib", 1265 "//rlz:rlz_lib",
1261 ] 1266 ]
1262 } 1267 }
1263 } 1268 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698