| 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 11 matching lines...) Expand all Loading... |
| 22 "//content/public/renderer:renderer_sources", | 22 "//content/public/renderer:renderer_sources", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, | 25 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, |
| 26 ".", | 26 ".", |
| 27 "//content") | 27 "//content") |
| 28 | 28 |
| 29 configs += [ | 29 configs += [ |
| 30 "//content:content_implementation", | 30 "//content:content_implementation", |
| 31 "//build/config/compiler:no_size_t_to_int_warning", | 31 "//build/config/compiler:no_size_t_to_int_warning", |
| 32 "//content/public/common:mojo_shell_client", | |
| 33 ] | 32 ] |
| 34 defines = [] | 33 defines = [] |
| 35 | 34 |
| 36 public_deps = [] | 35 public_deps = [] |
| 37 deps = [ | 36 deps = [ |
| 38 "//base:i18n", | 37 "//base:i18n", |
| 39 "//cc", | 38 "//cc", |
| 40 "//cc/blink", | 39 "//cc/blink", |
| 41 "//cc/ipc", | 40 "//cc/ipc", |
| 42 "//cc/proto", | 41 "//cc/proto", |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 # For the defines in mojo_media_config. | 273 # For the defines in mojo_media_config. |
| 275 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 274 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 276 } | 275 } |
| 277 | 276 |
| 278 if (!is_component_build) { | 277 if (!is_component_build) { |
| 279 public_deps = [ | 278 public_deps = [ |
| 280 ":renderer", | 279 ":renderer", |
| 281 ] | 280 ] |
| 282 } | 281 } |
| 283 } | 282 } |
| OLD | NEW |