| 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 | 9 |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//media", | 58 "//media", |
| 59 "//media/blink", | 59 "//media/blink", |
| 60 "//media/gpu/ipc/client", | 60 "//media/gpu/ipc/client", |
| 61 "//media/gpu/ipc/common", | 61 "//media/gpu/ipc/common", |
| 62 "//media/midi", | 62 "//media/midi", |
| 63 "//mojo/common", | 63 "//mojo/common", |
| 64 "//mojo/converters/geometry", | 64 "//mojo/converters/geometry", |
| 65 "//mojo/edk/js", | 65 "//mojo/edk/js", |
| 66 "//mojo/public/cpp/bindings", | 66 "//mojo/public/cpp/bindings", |
| 67 "//mojo/public/js", | 67 "//mojo/public/js", |
| 68 "//mojo/shell/public/cpp", | |
| 69 "//mojo/shell/public/interfaces", | |
| 70 "//net", | 68 "//net", |
| 71 "//sandbox", | 69 "//sandbox", |
| 70 "//services/shell/public/cpp", |
| 71 "//services/shell/public/interfaces", |
| 72 "//skia", | 72 "//skia", |
| 73 "//skia/public", | 73 "//skia/public", |
| 74 "//storage/common", | 74 "//storage/common", |
| 75 "//third_party/WebKit/public:blink", | 75 "//third_party/WebKit/public:blink", |
| 76 "//third_party/boringssl", | 76 "//third_party/boringssl", |
| 77 "//third_party/icu", | 77 "//third_party/icu", |
| 78 "//third_party/libjingle", | 78 "//third_party/libjingle", |
| 79 "//third_party/libyuv", | 79 "//third_party/libyuv", |
| 80 "//third_party/widevine/cdm:version_h", | 80 "//third_party/widevine/cdm:version_h", |
| 81 "//ui/accessibility", | 81 "//ui/accessibility", |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 # For the defines in mojo_media_config. | 262 # For the defines in mojo_media_config. |
| 263 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 263 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 264 } | 264 } |
| 265 | 265 |
| 266 if (!is_component_build) { | 266 if (!is_component_build) { |
| 267 public_deps = [ | 267 public_deps = [ |
| 268 ":renderer", | 268 ":renderer", |
| 269 ] | 269 ] |
| 270 } | 270 } |
| 271 } | 271 } |
| OLD | NEW |