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/common/common.gni") | 7 import("//content/common/common.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 source_set("common") { | 10 source_set("common") { |
11 # Only targets in the content tree can depend directly on this target. | 11 # Only targets in the content tree can depend directly on this target. |
12 visibility = [ "//content/*" ] | 12 visibility = [ "//content/*" ] |
13 | 13 |
14 sources = rebase_path(content_common_gypi_values.private_common_sources, | 14 sources = rebase_path(content_common_gypi_values.private_common_sources, |
15 ".", "//content") | 15 ".", "//content") |
16 | 16 |
17 forward_dependent_configs_from = [ | 17 forward_dependent_configs_from = [ |
18 "//gpu/command_buffer/common", | 18 "//gpu/command_buffer/common", |
19 "//third_party/WebKit/public:blink_headers", | 19 "//third_party/WebKit/public:blink_headers", |
20 ] | 20 ] |
21 | 21 |
22 configs += [ | 22 configs += [ |
23 "//content:content_implementation", | 23 "//content:content_implementation", |
24 "//content:libjingle_stub_config", | |
25 ] | 24 ] |
26 | 25 |
27 deps = [ | 26 deps = [ |
28 "//base", | 27 "//base", |
29 "//build/util:webkit_version", | 28 "//build/util:webkit_version", |
30 "//components/tracing", | 29 "//components/tracing", |
31 "//gpu/command_buffer/common", | 30 "//gpu/command_buffer/common", |
32 "//net", | 31 "//net", |
33 "//skia", | 32 "//skia", |
34 "//third_party/icu", | 33 "//third_party/icu", |
35 "//ui/accessibility", | 34 "//ui/accessibility", |
36 "//ui/base", | 35 "//ui/base", |
37 "//ui/gfx", | 36 "//ui/gfx", |
38 "//ui/gfx/geometry", | 37 "//ui/gfx/geometry", |
39 "//ui/gfx/ipc", | 38 "//ui/gfx/ipc", |
40 "//ui/shell_dialogs", | 39 "//ui/shell_dialogs", |
41 "//url", | 40 "//url", |
42 "//third_party/WebKit/public:blink_headers", | 41 "//third_party/WebKit/public:blink_headers", |
43 # TODO(GYP) convert these dependencies. | 42 "//third_party/libjingle", |
44 #'../third_party/libjingle/libjingle.gyp:libjingle', | |
45 ] | 43 ] |
46 | 44 |
47 if (!is_ios) { | 45 if (!is_ios) { |
48 deps += [ | 46 deps += [ |
49 "//cc", | 47 "//cc", |
50 "//ipc", | 48 "//ipc", |
51 "//ipc/mojo", | 49 "//ipc/mojo", |
52 "//mojo/environment:chromium", | 50 "//mojo/environment:chromium", |
53 "//mojo/system", | 51 "//mojo/system", |
54 # TODO: the dependency on gl_in_process_context should be decoupled from | 52 # TODO: the dependency on gl_in_process_context should be decoupled from |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 271 |
274 mojom("mojo_bindings") { | 272 mojom("mojo_bindings") { |
275 sources = [ | 273 sources = [ |
276 "render_frame_setup.mojom", | 274 "render_frame_setup.mojom", |
277 ] | 275 ] |
278 | 276 |
279 deps = [ | 277 deps = [ |
280 "//mojo/public/interfaces/application:application", | 278 "//mojo/public/interfaces/application:application", |
281 ] | 279 ] |
282 } | 280 } |
OLD | NEW |