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

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

Issue 2058853002: Enable InputDeviceServer/InputDeviceClient in mash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo_device
Patch Set: Fixes for comments. Created 4 years, 6 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
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("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 # These files are only built in a GN build because they bring in 612 # These files are only built in a GN build because they bring in
613 # dependencies that don't build with GYP. 613 # dependencies that don't build with GYP.
614 sources += [ 614 sources += [
615 "ui/views/frame/browser_frame_mus.cc", 615 "ui/views/frame/browser_frame_mus.cc",
616 "ui/views/frame/browser_frame_mus.h", 616 "ui/views/frame/browser_frame_mus.h",
617 "ui/views/frame/browser_non_client_frame_view_mus.cc", 617 "ui/views/frame/browser_non_client_frame_view_mus.cc",
618 "ui/views/frame/browser_non_client_frame_view_mus.h", 618 "ui/views/frame/browser_non_client_frame_view_mus.h",
619 ] 619 ]
620 deps += [ 620 deps += [
621 "//components/mus/public/cpp", 621 "//components/mus/public/cpp",
622 "//components/mus/public/cpp/input_devices",
622 "//content/public/common", 623 "//content/public/common",
623 "//ui/aura", 624 "//ui/aura",
624 "//ui/compositor", 625 "//ui/compositor",
625 "//ui/views/mus", 626 "//ui/views/mus",
626 ] 627 ]
627 defines += [ "MOJO_SHELL_CLIENT" ] 628 defines += [ "MOJO_SHELL_CLIENT" ]
628 data_deps += [ "//ash/mus" ] 629 data_deps += [ "//ash/mus" ]
629 } 630 }
630 if (ui_compositor_image_transport) { 631 if (ui_compositor_image_transport) {
631 deps += [ "//ui/gl" ] 632 deps += [ "//ui/gl" ]
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 # linking all of the test support. 1367 # linking all of the test support.
1367 source_set("pepper_cdm_test_constants") { 1368 source_set("pepper_cdm_test_constants") {
1368 testonly = true 1369 testonly = true
1369 visibility = [ "//chrome/*" ] 1370 visibility = [ "//chrome/*" ]
1370 sources = [ 1371 sources = [
1371 "media/pepper_cdm_test_constants.cc", 1372 "media/pepper_cdm_test_constants.cc",
1372 "media/pepper_cdm_test_constants.h", 1373 "media/pepper_cdm_test_constants.h",
1373 ] 1374 ]
1374 } 1375 }
1375 } 1376 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698