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("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 configs += [ | 26 configs += [ |
27 "//content:content_implementation", | 27 "//content:content_implementation", |
28 "//build/config:precompiled_headers", | 28 "//build/config:precompiled_headers", |
29 "//build/config/compiler:no_size_t_to_int_warning", | 29 "//build/config/compiler:no_size_t_to_int_warning", |
30 "//media/gpu:gpu_config", | 30 "//media/gpu:gpu_config", |
31 ] | 31 ] |
32 | 32 |
33 public_deps = [ | 33 public_deps = [ |
34 ":mojo_bindings", | 34 ":mojo_bindings", |
| 35 "//cc", |
35 "//gpu/command_buffer/common", | 36 "//gpu/command_buffer/common", |
36 "//ipc", | 37 "//ipc", |
37 "//third_party/WebKit/public:blink_headers", | 38 "//third_party/WebKit/public:blink_headers", |
38 ] | 39 ] |
39 deps = [ | 40 deps = [ |
40 # This looks needless as we have :mojo_bindings in public_deps, but it's | 41 # This looks needless as we have :mojo_bindings in public_deps, but it's |
41 # needed because of allow_circular_includes_from. | 42 # needed because of allow_circular_includes_from. |
42 ":mojo_bindings_cpp_sources", | 43 ":mojo_bindings_cpp_sources", |
43 "//base", | 44 "//base", |
44 "//base/third_party/dynamic_annotations", | 45 "//base/third_party/dynamic_annotations", |
45 "//build/util:webkit_version", | 46 "//build/util:webkit_version", |
46 "//cc", | |
47 "//cc/ipc", | 47 "//cc/ipc", |
48 "//cc/surfaces", | 48 "//cc/surfaces", |
49 "//components/tracing", | 49 "//components/tracing", |
50 "//components/tracing:startup_tracing", | 50 "//components/tracing:startup_tracing", |
51 "//content:resources", | 51 "//content:resources", |
52 "//content/app/resources", | 52 "//content/app/resources", |
53 "//device/bluetooth", | 53 "//device/bluetooth", |
54 "//gpu", | 54 "//gpu", |
55 "//gpu/command_buffer/client:gles2_c_lib", | 55 "//gpu/command_buffer/client:gles2_c_lib", |
56 "//gpu/command_buffer/client:gles2_cmd_helper", | 56 "//gpu/command_buffer/client:gles2_cmd_helper", |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 "//third_party/WebKit/public:mojo_bindings", | 262 "//third_party/WebKit/public:mojo_bindings", |
263 "//ui/gfx/geometry/mojo", | 263 "//ui/gfx/geometry/mojo", |
264 "//url/mojo:url_mojom_gurl", | 264 "//url/mojo:url_mojom_gurl", |
265 "//url/mojo:url_mojom_origin", | 265 "//url/mojo:url_mojom_origin", |
266 ] | 266 ] |
267 | 267 |
268 export_class_attribute = "CONTENT_EXPORT" | 268 export_class_attribute = "CONTENT_EXPORT" |
269 export_define = "CONTENT_IMPLEMENTATION=1" | 269 export_define = "CONTENT_IMPLEMENTATION=1" |
270 export_header = "content/common/content_export.h" | 270 export_header = "content/common/content_export.h" |
271 } | 271 } |
OLD | NEW |