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/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 "ui_base_switches.cc", | 219 "ui_base_switches.cc", |
220 "ui_base_switches.h", | 220 "ui_base_switches.h", |
221 "ui_base_switches_util.cc", | 221 "ui_base_switches_util.cc", |
222 "ui_base_switches_util.h", | 222 "ui_base_switches_util.h", |
223 "ui_base_types.cc", | 223 "ui_base_types.cc", |
224 "ui_base_types.h", | 224 "ui_base_types.h", |
225 "ui_base_export.h", | 225 "ui_base_export.h", |
226 "view_prop.cc", | 226 "view_prop.cc", |
227 "view_prop.h", | 227 "view_prop.h", |
228 # TODO(tfarina): Uncomment these when http://crbug.com/367591 is fixed. | 228 # TODO(tfarina): Uncomment these when http://crbug.com/367591 is fixed. |
229 #"webui/jstemplate_builder.cc", | 229 "webui/jstemplate_builder.cc", |
230 #"webui/jstemplate_builder.h", | 230 "webui/jstemplate_builder.h", |
231 #"webui/web_ui_util.cc", | 231 #"webui/web_ui_util.cc", |
232 #"webui/web_ui_util.h", | 232 #"webui/web_ui_util.h", |
233 "win/accessibility_ids_win.h", | 233 "win/accessibility_ids_win.h", |
234 "win/accessibility_misc_utils.cc", | 234 "win/accessibility_misc_utils.cc", |
235 "win/accessibility_misc_utils.h", | 235 "win/accessibility_misc_utils.h", |
236 "win/atl_module.h", | 236 "win/atl_module.h", |
237 "win/dpi_setup.cc", | 237 "win/dpi_setup.cc", |
238 "win/dpi_setup.h", | 238 "win/dpi_setup.h", |
239 "win/foreground_helper.cc", | 239 "win/foreground_helper.cc", |
240 "win/foreground_helper.h", | 240 "win/foreground_helper.h", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 deps = [ | 279 deps = [ |
280 "//base", | 280 "//base", |
281 "//base/third_party/dynamic_annotations", | 281 "//base/third_party/dynamic_annotations", |
282 "//base:base_static", | 282 "//base:base_static", |
283 "//base:i18n", | 283 "//base:i18n", |
284 "//net", | 284 "//net", |
285 "//skia", | 285 "//skia", |
286 "//third_party/icu", | 286 "//third_party/icu", |
287 "//ui/base/strings", | 287 "//ui/base/strings", |
288 "//ui/resources", | 288 "//ui/resources", |
| 289 "//ui/webui/resources", |
289 "//url", | 290 "//url", |
290 ] | 291 ] |
291 | 292 |
292 if (is_ios) { | 293 if (is_ios) { |
293 sources += [ | 294 sources += [ |
294 "l10n/l10n_util_mac.h", | 295 "l10n/l10n_util_mac.h", |
295 "l10n/l10n_util_mac.mm", | 296 "l10n/l10n_util_mac.mm", |
296 ] | 297 ] |
297 } | 298 } |
298 | 299 |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 | 534 |
534 if (!is_ios) { | 535 if (!is_ios) { |
535 sources += [ | 536 sources += [ |
536 "ime/dummy_input_method.cc", | 537 "ime/dummy_input_method.cc", |
537 "ime/dummy_input_method.h", | 538 "ime/dummy_input_method.h", |
538 "ime/dummy_text_input_client.cc", | 539 "ime/dummy_text_input_client.cc", |
539 "ime/dummy_text_input_client.h", | 540 "ime/dummy_text_input_client.h", |
540 ] | 541 ] |
541 } | 542 } |
542 } | 543 } |
OLD | NEW |