| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "//ui/gl", | 96 "//ui/gl", |
| 97 "//ui/native_theme", | 97 "//ui/native_theme", |
| 98 "//ui/surface", | 98 "//ui/surface", |
| 99 "//v8", | 99 "//v8", |
| 100 ] | 100 ] |
| 101 allow_circular_includes_from = [] | 101 allow_circular_includes_from = [] |
| 102 | 102 |
| 103 if (use_aura) { | 103 if (use_aura) { |
| 104 public_deps += [ "//content/renderer/mus" ] | 104 public_deps += [ "//content/renderer/mus" ] |
| 105 allow_circular_includes_from += [ "//content/renderer/mus" ] | 105 allow_circular_includes_from += [ "//content/renderer/mus" ] |
| 106 deps += [ "//services/ui/common:mus_common" ] | 106 deps += [ "//services/ui/public/cpp" ] |
| 107 } | 107 } |
| 108 | 108 |
| 109 if (use_external_popup_menu) { | 109 if (use_external_popup_menu) { |
| 110 sources += [ | 110 sources += [ |
| 111 "external_popup_menu.cc", | 111 "external_popup_menu.cc", |
| 112 "external_popup_menu.h", | 112 "external_popup_menu.h", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| 115 | 115 |
| 116 if (is_mac) { | 116 if (is_mac) { |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 # For the defines in mojo_media_config. | 272 # For the defines in mojo_media_config. |
| 273 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 273 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 274 } | 274 } |
| 275 | 275 |
| 276 if (!is_component_build) { | 276 if (!is_component_build) { |
| 277 public_deps = [ | 277 public_deps = [ |
| 278 ":renderer", | 278 ":renderer", |
| 279 ] | 279 ] |
| 280 } | 280 } |
| 281 } | 281 } |
| OLD | NEW |