| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 public_deps = [] | 31 public_deps = [] |
| 32 deps = [ | 32 deps = [ |
| 33 "//base:i18n", | 33 "//base:i18n", |
| 34 "//cc", | 34 "//cc", |
| 35 "//cc/blink", | 35 "//cc/blink", |
| 36 "//cc/ipc", | 36 "//cc/ipc", |
| 37 "//cc/proto", | 37 "//cc/proto", |
| 38 "//cc/surfaces", | 38 "//cc/surfaces", |
| 39 "//cc/surfaces:surface_id", | 39 "//cc/surfaces:surface_id", |
| 40 "//components/memory_coordinator/child", | |
| 41 "//components/scheduler:scheduler", | 40 "//components/scheduler:scheduler", |
| 42 "//components/url_formatter", | 41 "//components/url_formatter", |
| 43 "//content:resources", | 42 "//content:resources", |
| 44 "//content/child", | 43 "//content/child", |
| 45 "//content/common", | 44 "//content/common", |
| 46 "//content/gpu:gpu_sources", | 45 "//content/gpu:gpu_sources", |
| 47 "//content/public/child:child_sources", | 46 "//content/public/child:child_sources", |
| 48 "//content/public/common:common_sources", | 47 "//content/public/common:common_sources", |
| 49 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 48 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 50 "//content/public/common:features", | 49 "//content/public/common:features", |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 # For the defines in mojo_media_config. | 264 # For the defines in mojo_media_config. |
| 266 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 265 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 267 } | 266 } |
| 268 | 267 |
| 269 if (!is_component_build) { | 268 if (!is_component_build) { |
| 270 public_deps = [ | 269 public_deps = [ |
| 271 ":renderer", | 270 ":renderer", |
| 272 ] | 271 ] |
| 273 } | 272 } |
| 274 } | 273 } |
| OLD | NEW |