| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.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("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "//services/service_manager/public/cpp", | 247 "//services/service_manager/public/cpp", |
| 248 "//services/service_manager/public/interfaces", | 248 "//services/service_manager/public/interfaces", |
| 249 "//third_party/WebKit/public:blink_headers", | 249 "//third_party/WebKit/public:blink_headers", |
| 250 "//ui/accessibility", | 250 "//ui/accessibility", |
| 251 "//ui/surface", | 251 "//ui/surface", |
| 252 "//url/ipc:url_ipc", | 252 "//url/ipc:url_ipc", |
| 253 ] | 253 ] |
| 254 deps = [ | 254 deps = [ |
| 255 # This looks needless as we have //content/common in public_deps, but it's | 255 # This looks needless as we have //content/common in public_deps, but it's |
| 256 # needed because of allow_circular_includes_from. | 256 # needed because of allow_circular_includes_from. |
| 257 "//content/common:mojo_bindings_cpp_sources", | 257 "//content/common:mojo_bindings", |
| 258 "//ipc", | 258 "//ipc", |
| 259 "//media", | 259 "//media", |
| 260 "//mojo/common", | 260 "//mojo/common", |
| 261 "//net", | 261 "//net", |
| 262 "//ppapi/c", | 262 "//ppapi/c", |
| 263 "//ppapi/features", | 263 "//ppapi/features", |
| 264 "//services/service_manager/public/cpp", | 264 "//services/service_manager/public/cpp", |
| 265 "//skia", | 265 "//skia", |
| 266 "//storage/common", | 266 "//storage/common", |
| 267 "//third_party/icu", | 267 "//third_party/icu", |
| 268 "//ui/accessibility", | 268 "//ui/accessibility", |
| 269 "//ui/base", | 269 "//ui/base", |
| 270 "//ui/gfx", | 270 "//ui/gfx", |
| 271 "//ui/gfx/ipc", | 271 "//ui/gfx/ipc", |
| 272 "//ui/gfx/ipc/color", | 272 "//ui/gfx/ipc/color", |
| 273 "//ui/gfx/ipc/geometry", | 273 "//ui/gfx/ipc/geometry", |
| 274 "//ui/gfx/ipc/skia", | 274 "//ui/gfx/ipc/skia", |
| 275 ] | 275 ] |
| 276 | 276 |
| 277 if (use_aura) { | 277 if (use_aura) { |
| 278 deps += [ "//ui/aura" ] | 278 deps += [ "//ui/aura" ] |
| 279 } | 279 } |
| 280 | 280 |
| 281 # //content/common needs to include public headers. | 281 # //content/common needs to include public headers. |
| 282 allow_circular_includes_from = [ | 282 allow_circular_includes_from = [ |
| 283 "//content/common", | 283 "//content/common", |
| 284 "//content/common:mojo_bindings_cpp_sources", | 284 "//content/common:mojo_bindings", |
| 285 ] | 285 ] |
| 286 | 286 |
| 287 if (!enable_plugins) { | 287 if (!enable_plugins) { |
| 288 sources -= [ | 288 sources -= [ |
| 289 "pepper_plugin_info.cc", | 289 "pepper_plugin_info.cc", |
| 290 "pepper_plugin_info.h", | 290 "pepper_plugin_info.h", |
| 291 ] | 291 ] |
| 292 } | 292 } |
| 293 | 293 |
| 294 if (enable_webrtc) { | 294 if (enable_webrtc) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 320 sources = [ | 320 sources = [ |
| 321 "window_container_type.mojom", | 321 "window_container_type.mojom", |
| 322 ] | 322 ] |
| 323 } | 323 } |
| 324 | 324 |
| 325 mojom("service_names") { | 325 mojom("service_names") { |
| 326 sources = [ | 326 sources = [ |
| 327 "service_names.mojom", | 327 "service_names.mojom", |
| 328 ] | 328 ] |
| 329 } | 329 } |
| OLD | NEW |