| 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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 "ui/views/frame/browser_frame_mus.cc", | 610 "ui/views/frame/browser_frame_mus.cc", |
| 611 "ui/views/frame/browser_frame_mus.h", | 611 "ui/views/frame/browser_frame_mus.h", |
| 612 "ui/views/frame/browser_non_client_frame_view_mus.cc", | 612 "ui/views/frame/browser_non_client_frame_view_mus.cc", |
| 613 "ui/views/frame/browser_non_client_frame_view_mus.h", | 613 "ui/views/frame/browser_non_client_frame_view_mus.h", |
| 614 ] | 614 ] |
| 615 deps += [ | 615 deps += [ |
| 616 "//components/mus/public/cpp", | 616 "//components/mus/public/cpp", |
| 617 "//content/public/common", | 617 "//content/public/common", |
| 618 "//ui/aura", | 618 "//ui/aura", |
| 619 "//ui/compositor", | 619 "//ui/compositor", |
| 620 "//ui/views/mus:for_component", | 620 "//ui/views/mus", |
| 621 ] | 621 ] |
| 622 defines += [ "MOJO_SHELL_CLIENT" ] | 622 defines += [ "MOJO_SHELL_CLIENT" ] |
| 623 data_deps += [ "//ash/mus" ] | 623 data_deps += [ "//ash/mus" ] |
| 624 } | 624 } |
| 625 if (ui_compositor_image_transport) { | 625 if (ui_compositor_image_transport) { |
| 626 deps += [ "//ui/gl" ] | 626 deps += [ "//ui/gl" ] |
| 627 } | 627 } |
| 628 | 628 |
| 629 if (use_ash) { | 629 if (use_ash) { |
| 630 sources += | 630 sources += |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 # linking all of the test support. | 1358 # linking all of the test support. |
| 1359 source_set("pepper_cdm_test_constants") { | 1359 source_set("pepper_cdm_test_constants") { |
| 1360 testonly = true | 1360 testonly = true |
| 1361 visibility = [ "//chrome/*" ] | 1361 visibility = [ "//chrome/*" ] |
| 1362 sources = [ | 1362 sources = [ |
| 1363 "media/pepper_cdm_test_constants.cc", | 1363 "media/pepper_cdm_test_constants.cc", |
| 1364 "media/pepper_cdm_test_constants.h", | 1364 "media/pepper_cdm_test_constants.h", |
| 1365 ] | 1365 ] |
| 1366 } | 1366 } |
| 1367 } | 1367 } |
| OLD | NEW |