| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//mojo/message_pump", | 48 "//mojo/message_pump", |
| 49 "//mojo/shell/public/interfaces", | 49 "//mojo/shell/public/interfaces", |
| 50 "//mojo/shell/runner/common", | 50 "//mojo/shell/runner/common", |
| 51 "//net", | 51 "//net", |
| 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 "//third_party/npapi", | |
| 59 "//ui/base", | 58 "//ui/base", |
| 60 "//ui/events/gestures/blink", | 59 "//ui/events/gestures/blink", |
| 61 "//ui/gfx", | 60 "//ui/gfx", |
| 62 "//ui/gfx/geometry", | 61 "//ui/gfx/geometry", |
| 63 "//ui/native_theme", | 62 "//ui/native_theme", |
| 64 "//url", | 63 "//url", |
| 65 ] | 64 ] |
| 66 | 65 |
| 67 if (!use_default_render_theme) { | 66 if (!use_default_render_theme) { |
| 68 sources -= [ | 67 sources -= [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 79 deps += [ "//ppapi/proxy" ] | 78 deps += [ "//ppapi/proxy" ] |
| 80 } else { | 79 } else { |
| 81 sources -= [ "browser_font_resource_trusted.cc" ] | 80 sources -= [ "browser_font_resource_trusted.cc" ] |
| 82 } | 81 } |
| 83 | 82 |
| 84 configs += [ | 83 configs += [ |
| 85 "//content:content_implementation", | 84 "//content:content_implementation", |
| 86 "//build/config/compiler:no_size_t_to_int_warning", | 85 "//build/config/compiler:no_size_t_to_int_warning", |
| 87 ] | 86 ] |
| 88 } | 87 } |
| OLD | NEW |