OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "web_widget_test_proxy.h", | 103 "web_widget_test_proxy.h", |
104 ] | 104 ] |
105 | 105 |
106 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 106 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
108 | 108 |
109 deps = [ | 109 deps = [ |
110 ":resources", | 110 ":resources", |
111 "//base:base", | 111 "//base:base", |
112 "//base:i18n", | 112 "//base:i18n", |
| 113 "//base/test:test_support_main_stub", |
113 "//cc", | 114 "//cc", |
114 "//cc/blink", | 115 "//cc/blink", |
115 "//content/public/common", | 116 "//content/public/common", |
116 "//gin", | 117 "//gin", |
117 "//gpu", | 118 "//gpu", |
118 "//gpu/command_buffer/client:gles2_interface", | 119 "//gpu/command_buffer/client:gles2_interface", |
119 "//media/midi:mojo_cpp_sources", | 120 "//media/midi:mojo_cpp_sources", |
120 "//net", | 121 "//net", |
121 "//skia", | 122 "//skia", |
122 "//third_party/WebKit/public:blink", | 123 "//third_party/WebKit/public:blink", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 | 205 |
205 if (use_x11) { | 206 if (use_x11) { |
206 deps += [ ":copy_x11_fonts" ] | 207 deps += [ ":copy_x11_fonts" ] |
207 data_deps += [ ":copy_x11_fonts" ] | 208 data_deps += [ ":copy_x11_fonts" ] |
208 } | 209 } |
209 if (is_android) { | 210 if (is_android) { |
210 deps += [ ":copy_android_fonts" ] | 211 deps += [ ":copy_android_fonts" ] |
211 data_deps += [ ":copy_android_fonts" ] | 212 data_deps += [ ":copy_android_fonts" ] |
212 } | 213 } |
213 } | 214 } |
OLD | NEW |