| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "//mojo/common", | 72 "//mojo/common", |
| 73 "//mojo/edk/js", | 73 "//mojo/edk/js", |
| 74 "//mojo/public/cpp/bindings", | 74 "//mojo/public/cpp/bindings", |
| 75 "//mojo/public/js", | 75 "//mojo/public/js", |
| 76 "//net", | 76 "//net", |
| 77 "//sandbox", | 77 "//sandbox", |
| 78 "//services/shell/public/cpp", | 78 "//services/shell/public/cpp", |
| 79 "//services/shell/public/interfaces", | 79 "//services/shell/public/interfaces", |
| 80 "//skia", | 80 "//skia", |
| 81 "//storage/common", | 81 "//storage/common", |
| 82 "//third_party/WebKit/Source/platform:mojo_bindings", |
| 82 "//third_party/WebKit/public:blink", | 83 "//third_party/WebKit/public:blink", |
| 83 "//third_party/WebKit/public:mojo_bindings", | |
| 84 "//third_party/boringssl", | 84 "//third_party/boringssl", |
| 85 "//third_party/icu", | 85 "//third_party/icu", |
| 86 "//third_party/libjingle", | 86 "//third_party/libjingle", |
| 87 "//third_party/libyuv", | 87 "//third_party/libyuv", |
| 88 "//third_party/widevine/cdm:version_h", | 88 "//third_party/widevine/cdm:version_h", |
| 89 "//ui/accessibility", | 89 "//ui/accessibility", |
| 90 "//ui/base", | 90 "//ui/base", |
| 91 "//ui/base/ime", | 91 "//ui/base/ime", |
| 92 "//ui/display", | 92 "//ui/display", |
| 93 "//ui/events:dom_keycode_converter", | 93 "//ui/events:dom_keycode_converter", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 # For the defines in mojo_media_config. | 273 # For the defines in mojo_media_config. |
| 274 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 274 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 275 } | 275 } |
| 276 | 276 |
| 277 if (!is_component_build) { | 277 if (!is_component_build) { |
| 278 public_deps = [ | 278 public_deps = [ |
| 279 ":renderer", | 279 ":renderer", |
| 280 ] | 280 ] |
| 281 } | 281 } |
| 282 } | 282 } |
| OLD | NEW |