| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "//ui/gl", | 98 "//ui/gl", |
| 99 "//ui/native_theme", | 99 "//ui/native_theme", |
| 100 "//ui/surface", | 100 "//ui/surface", |
| 101 "//v8", | 101 "//v8", |
| 102 ] | 102 ] |
| 103 allow_circular_includes_from = [] | 103 allow_circular_includes_from = [] |
| 104 | 104 |
| 105 if (use_aura) { | 105 if (use_aura) { |
| 106 public_deps += [ "//content/renderer/mus" ] | 106 public_deps += [ "//content/renderer/mus" ] |
| 107 allow_circular_includes_from += [ "//content/renderer/mus" ] | 107 allow_circular_includes_from += [ "//content/renderer/mus" ] |
| 108 deps += [ "//services/ui/common:mus_common" ] | 108 deps += [ "//services/ui/public/cpp" ] |
| 109 } | 109 } |
| 110 | 110 |
| 111 if (use_external_popup_menu) { | 111 if (use_external_popup_menu) { |
| 112 sources += [ | 112 sources += [ |
| 113 "external_popup_menu.cc", | 113 "external_popup_menu.cc", |
| 114 "external_popup_menu.h", | 114 "external_popup_menu.h", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| 117 | 117 |
| 118 if (is_mac) { | 118 if (is_mac) { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 # For the defines in mojo_media_config. | 270 # For the defines in mojo_media_config. |
| 271 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 271 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 272 } | 272 } |
| 273 | 273 |
| 274 if (!is_component_build) { | 274 if (!is_component_build) { |
| 275 public_deps = [ | 275 public_deps = [ |
| 276 ":renderer", | 276 ":renderer", |
| 277 ] | 277 ] |
| 278 } | 278 } |
| 279 } | 279 } |
| OLD | NEW |