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/child/child.gni") | 7 import("//content/child/child.gni") |
8 | 8 |
9 source_set("child") { | 9 source_set("child") { |
10 # Targets external to content should always link to the public API. | 10 # Targets external to content should always link to the public API. |
(...skipping 28 matching lines...) Expand all Loading... |
39 "//components/scheduler:scheduler", | 39 "//components/scheduler:scheduler", |
40 "//components/tracing", | 40 "//components/tracing", |
41 "//components/tracing:startup_tracing", | 41 "//components/tracing:startup_tracing", |
42 "//components/webcrypto", | 42 "//components/webcrypto", |
43 "//content/app/resources", | 43 "//content/app/resources", |
44 "//content/app/strings", | 44 "//content/app/strings", |
45 "//content/common", | 45 "//content/common", |
46 "//crypto:platform", | 46 "//crypto:platform", |
47 "//mojo/common", | 47 "//mojo/common", |
48 "//mojo/message_pump", | 48 "//mojo/message_pump", |
49 "//mojo/shell/public/interfaces", | |
50 "//mojo/shell/runner/common", | |
51 "//net", | 49 "//net", |
| 50 "//services/shell/public/interfaces", |
| 51 "//services/shell/runner/common", |
52 "//skia", | 52 "//skia", |
53 "//storage/common", | 53 "//storage/common", |
54 "//third_party/WebKit/public:blink_headers", | 54 "//third_party/WebKit/public:blink_headers", |
55 "//third_party/WebKit/public:image_resources", | 55 "//third_party/WebKit/public:image_resources", |
56 "//third_party/WebKit/public:resources", | 56 "//third_party/WebKit/public:resources", |
57 "//third_party/icu", | 57 "//third_party/icu", |
58 "//ui/base", | 58 "//ui/base", |
59 "//ui/events/gestures/blink", | 59 "//ui/events/gestures/blink", |
60 "//ui/gfx", | 60 "//ui/gfx", |
61 "//ui/gfx/geometry", | 61 "//ui/gfx/geometry", |
(...skipping 16 matching lines...) Expand all Loading... |
78 deps += [ "//ppapi/proxy" ] | 78 deps += [ "//ppapi/proxy" ] |
79 } else { | 79 } else { |
80 sources -= [ "browser_font_resource_trusted.cc" ] | 80 sources -= [ "browser_font_resource_trusted.cc" ] |
81 } | 81 } |
82 | 82 |
83 configs += [ | 83 configs += [ |
84 "//content:content_implementation", | 84 "//content:content_implementation", |
85 "//build/config/compiler:no_size_t_to_int_warning", | 85 "//build/config/compiler:no_size_t_to_int_warning", |
86 ] | 86 ] |
87 } | 87 } |
OLD | NEW |