OLD | NEW |
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("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 | 611 |
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", | |
622 "//components/mus/public/cpp/input_devices", | |
623 "//content/public/common", | 621 "//content/public/common", |
| 622 "//services/ui/public/cpp", |
| 623 "//services/ui/public/cpp/input_devices", |
624 "//ui/aura", | 624 "//ui/aura", |
625 "//ui/compositor", | 625 "//ui/compositor", |
626 "//ui/views/mus", | 626 "//ui/views/mus", |
627 ] | 627 ] |
628 defines += [ "MOJO_SHELL_CLIENT" ] | 628 defines += [ "MOJO_SHELL_CLIENT" ] |
629 } | 629 } |
630 if (ui_compositor_image_transport) { | 630 if (ui_compositor_image_transport) { |
631 deps += [ "//ui/gl" ] | 631 deps += [ "//ui/gl" ] |
632 } | 632 } |
633 | 633 |
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1362 # linking all of the test support. | 1362 # linking all of the test support. |
1363 source_set("pepper_cdm_test_constants") { | 1363 source_set("pepper_cdm_test_constants") { |
1364 testonly = true | 1364 testonly = true |
1365 visibility = [ "//chrome/*" ] | 1365 visibility = [ "//chrome/*" ] |
1366 sources = [ | 1366 sources = [ |
1367 "media/pepper_cdm_test_constants.cc", | 1367 "media/pepper_cdm_test_constants.cc", |
1368 "media/pepper_cdm_test_constants.h", | 1368 "media/pepper_cdm_test_constants.h", |
1369 ] | 1369 ] |
1370 } | 1370 } |
1371 } | 1371 } |
OLD | NEW |