| 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("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.gni") |
| 10 | 10 |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "//build/config:precompiled_headers", | 228 "//build/config:precompiled_headers", |
| 229 "//content:content_implementation", | 229 "//content:content_implementation", |
| 230 ] | 230 ] |
| 231 | 231 |
| 232 public_configs = [ "//v8:external_startup_data" ] | 232 public_configs = [ "//v8:external_startup_data" ] |
| 233 | 233 |
| 234 public_deps = [ | 234 public_deps = [ |
| 235 "//content/common", | 235 "//content/common", |
| 236 "//content/public/common:interfaces", | 236 "//content/public/common:interfaces", |
| 237 "//mojo/public/cpp/bindings", | 237 "//mojo/public/cpp/bindings", |
| 238 "//services/shell/public/cpp", | 238 "//services/service_manager/public/cpp", |
| 239 "//services/shell/public/interfaces", | 239 "//services/service_manager/public/interfaces", |
| 240 "//third_party/WebKit/public:blink_headers", | 240 "//third_party/WebKit/public:blink_headers", |
| 241 "//ui/accessibility", | 241 "//ui/accessibility", |
| 242 "//ui/surface", | 242 "//ui/surface", |
| 243 "//url/ipc:url_ipc", | 243 "//url/ipc:url_ipc", |
| 244 ] | 244 ] |
| 245 deps = [ | 245 deps = [ |
| 246 # This looks needless as we have //content/common in public_deps, but it's | 246 # This looks needless as we have //content/common in public_deps, but it's |
| 247 # needed because of allow_circular_includes_from. | 247 # needed because of allow_circular_includes_from. |
| 248 "//content/common:mojo_bindings_cpp_sources", | 248 "//content/common:mojo_bindings_cpp_sources", |
| 249 "//ipc", | 249 "//ipc", |
| 250 "//media", | 250 "//media", |
| 251 "//mojo/common", | 251 "//mojo/common", |
| 252 "//net", | 252 "//net", |
| 253 "//ppapi/c", | 253 "//ppapi/c", |
| 254 "//services/shell/public/cpp", | 254 "//services/service_manager/public/cpp", |
| 255 "//skia", | 255 "//skia", |
| 256 "//storage/common", | 256 "//storage/common", |
| 257 "//third_party/icu", | 257 "//third_party/icu", |
| 258 "//ui/accessibility", | 258 "//ui/accessibility", |
| 259 "//ui/base", | 259 "//ui/base", |
| 260 "//ui/gfx", | 260 "//ui/gfx", |
| 261 "//ui/gfx/ipc", | 261 "//ui/gfx/ipc", |
| 262 "//ui/gfx/ipc/color", | 262 "//ui/gfx/ipc/color", |
| 263 "//ui/gfx/ipc/geometry", | 263 "//ui/gfx/ipc/geometry", |
| 264 "//ui/gfx/ipc/skia", | 264 "//ui/gfx/ipc/skia", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "feature_h264_with_openh264_ffmpeg.cc", | 300 "feature_h264_with_openh264_ffmpeg.cc", |
| 301 "feature_h264_with_openh264_ffmpeg.h", | 301 "feature_h264_with_openh264_ffmpeg.h", |
| 302 ] | 302 ] |
| 303 } | 303 } |
| 304 | 304 |
| 305 mojom("interfaces") { | 305 mojom("interfaces") { |
| 306 sources = [ | 306 sources = [ |
| 307 "window_container_type.mojom", | 307 "window_container_type.mojom", |
| 308 ] | 308 ] |
| 309 } | 309 } |
| OLD | NEW |