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 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "//gpu/command_buffer/client:gles2_interface", | 56 "//gpu/command_buffer/client:gles2_interface", |
57 "//ipc/mojo", | 57 "//ipc/mojo", |
58 "//jingle:jingle_glue", | 58 "//jingle:jingle_glue", |
59 "//media", | 59 "//media", |
60 "//media/blink", | 60 "//media/blink", |
61 "//media/gpu", | 61 "//media/gpu", |
62 "//media/gpu/ipc/client", | 62 "//media/gpu/ipc/client", |
63 "//media/gpu/ipc/common", | 63 "//media/gpu/ipc/common", |
64 "//media/midi", | 64 "//media/midi", |
65 "//mojo/common", | 65 "//mojo/common", |
66 "//mojo/converters/geometry", | |
67 "//mojo/edk/js", | 66 "//mojo/edk/js", |
68 "//mojo/public/cpp/bindings", | 67 "//mojo/public/cpp/bindings", |
69 "//mojo/public/js", | 68 "//mojo/public/js", |
70 "//net", | 69 "//net", |
71 "//sandbox", | 70 "//sandbox", |
72 "//services/shell/public/cpp", | 71 "//services/shell/public/cpp", |
73 "//services/shell/public/interfaces", | 72 "//services/shell/public/interfaces", |
74 "//skia", | 73 "//skia", |
75 "//skia/public", | 74 "//skia/public", |
76 "//storage/common", | 75 "//storage/common", |
77 "//third_party/WebKit/public:blink", | 76 "//third_party/WebKit/public:blink", |
78 "//third_party/WebKit/public:mojo_bindings", | 77 "//third_party/WebKit/public:mojo_bindings", |
79 "//third_party/WebKit/public:mojo_bindings_blink", | 78 "//third_party/WebKit/public:mojo_bindings_blink", |
80 "//third_party/boringssl", | 79 "//third_party/boringssl", |
81 "//third_party/icu", | 80 "//third_party/icu", |
82 "//third_party/libjingle", | 81 "//third_party/libjingle", |
83 "//third_party/libyuv", | 82 "//third_party/libyuv", |
84 "//third_party/widevine/cdm:version_h", | 83 "//third_party/widevine/cdm:version_h", |
85 "//ui/accessibility", | 84 "//ui/accessibility", |
86 "//ui/base", | 85 "//ui/base", |
87 "//ui/base/ime", | 86 "//ui/base/ime", |
88 "//ui/display", | 87 "//ui/display", |
89 "//ui/events:dom_keycode_converter", | 88 "//ui/events:dom_keycode_converter", |
90 "//ui/events:events_base", | 89 "//ui/events:events_base", |
91 "//ui/events/blink", | 90 "//ui/events/blink", |
| 91 "//ui/gfx/geometry/mojo", |
92 "//ui/gl", | 92 "//ui/gl", |
93 "//ui/native_theme", | 93 "//ui/native_theme", |
94 "//ui/surface", | 94 "//ui/surface", |
95 "//v8", | 95 "//v8", |
96 ] | 96 ] |
97 allow_circular_includes_from = [] | 97 allow_circular_includes_from = [] |
98 | 98 |
99 if (use_aura) { | 99 if (use_aura) { |
100 public_deps += [ "//content/renderer/mus" ] | 100 public_deps += [ "//content/renderer/mus" ] |
101 allow_circular_includes_from += [ "//content/renderer/mus" ] | 101 allow_circular_includes_from += [ "//content/renderer/mus" ] |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 # For the defines in mojo_media_config. | 261 # For the defines in mojo_media_config. |
262 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 262 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
263 } | 263 } |
264 | 264 |
265 if (!is_component_build) { | 265 if (!is_component_build) { |
266 public_deps = [ | 266 public_deps = [ |
267 ":renderer", | 267 ":renderer", |
268 ] | 268 ] |
269 } | 269 } |
270 } | 270 } |
OLD | NEW |