| 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("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 | 10 |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 | 391 |
| 392 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 392 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 393 "//build/config/compiler:no_size_t_to_int_warning", | 393 "//build/config/compiler:no_size_t_to_int_warning", |
| 394 ] | 394 ] |
| 395 | 395 |
| 396 defines = [ "VIEWS_IMPLEMENTATION" ] | 396 defines = [ "VIEWS_IMPLEMENTATION" ] |
| 397 | 397 |
| 398 deps = [ | 398 deps = [ |
| 399 "//base:i18n", | 399 "//base:i18n", |
| 400 "//base/third_party/dynamic_annotations", | 400 "//base/third_party/dynamic_annotations", |
| 401 "//cc/paint", |
| 401 "//services/ui/public/interfaces", | 402 "//services/ui/public/interfaces", |
| 402 "//skia", | 403 "//skia", |
| 403 "//third_party/icu", | 404 "//third_party/icu", |
| 404 "//ui/accessibility", | 405 "//ui/accessibility", |
| 405 "//ui/display", | 406 "//ui/display", |
| 406 "//ui/native_theme", | 407 "//ui/native_theme", |
| 407 "//ui/native_theme:native_theme_browser", | 408 "//ui/native_theme:native_theme_browser", |
| 408 "//ui/resources", | 409 "//ui/resources", |
| 409 "//ui/strings", | 410 "//ui/strings", |
| 410 "//ui/views/resources", | 411 "//ui/views/resources", |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 "//ui/base:test_support", | 1024 "//ui/base:test_support", |
| 1024 "//ui/compositor", | 1025 "//ui/compositor", |
| 1025 "//ui/events:test_support", | 1026 "//ui/events:test_support", |
| 1026 "//ui/gl:test_support", | 1027 "//ui/gl:test_support", |
| 1027 "//ui/resources", | 1028 "//ui/resources", |
| 1028 "//ui/resources:ui_test_pak", | 1029 "//ui/resources:ui_test_pak", |
| 1029 "//ui/strings", | 1030 "//ui/strings", |
| 1030 ] | 1031 ] |
| 1031 } | 1032 } |
| 1032 } | 1033 } |
| OLD | NEW |