| 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/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
| 9 | 9 |
| 10 config("flags") { | 10 config("flags") { |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 | 390 |
| 391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 392 "//build/config/compiler:no_size_t_to_int_warning", | 392 "//build/config/compiler:no_size_t_to_int_warning", |
| 393 ] | 393 ] |
| 394 | 394 |
| 395 defines = [ "VIEWS_IMPLEMENTATION" ] | 395 defines = [ "VIEWS_IMPLEMENTATION" ] |
| 396 | 396 |
| 397 deps = [ | 397 deps = [ |
| 398 "//base:i18n", | 398 "//base:i18n", |
| 399 "//base/third_party/dynamic_annotations", | 399 "//base/third_party/dynamic_annotations", |
| 400 "//services/ui/public/interfaces", |
| 400 "//skia", | 401 "//skia", |
| 401 "//third_party/icu", | 402 "//third_party/icu", |
| 402 "//ui/accessibility", | 403 "//ui/accessibility", |
| 403 "//ui/display", | 404 "//ui/display", |
| 404 "//ui/native_theme", | 405 "//ui/native_theme", |
| 405 "//ui/native_theme:native_theme_browser", | 406 "//ui/native_theme:native_theme_browser", |
| 406 "//ui/resources", | 407 "//ui/resources", |
| 407 "//ui/strings", | 408 "//ui/strings", |
| 408 "//ui/views/resources", | 409 "//ui/views/resources", |
| 409 "//url", | 410 "//url", |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 configs += [ "//build/config:precompiled_headers" ] | 874 configs += [ "//build/config:precompiled_headers" ] |
| 874 | 875 |
| 875 # Make all deps in this target public so both views_unittests and | 876 # Make all deps in this target public so both views_unittests and |
| 876 # views_mus_unittests will get them. | 877 # views_mus_unittests will get them. |
| 877 public_deps = [ | 878 public_deps = [ |
| 878 ":test_support", | 879 ":test_support", |
| 879 "//base", | 880 "//base", |
| 880 "//base:i18n", | 881 "//base:i18n", |
| 881 "//base/test:test_support", | 882 "//base/test:test_support", |
| 882 "//cc", | 883 "//cc", |
| 884 "//services/ui/public/interfaces", |
| 883 "//skia", | 885 "//skia", |
| 884 "//testing/gtest", | 886 "//testing/gtest", |
| 885 "//third_party/icu", | 887 "//third_party/icu", |
| 886 "//ui/accessibility", | 888 "//ui/accessibility", |
| 887 "//ui/base", | 889 "//ui/base", |
| 888 "//ui/base:test_support", | 890 "//ui/base:test_support", |
| 889 "//ui/base/ime", | 891 "//ui/base/ime", |
| 890 "//ui/compositor:test_support", | 892 "//ui/compositor:test_support", |
| 891 "//ui/events:dom_keycode_converter", | 893 "//ui/events:dom_keycode_converter", |
| 892 "//ui/events:events_base", | 894 "//ui/events:events_base", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 "//ui/base:test_support", | 1018 "//ui/base:test_support", |
| 1017 "//ui/compositor", | 1019 "//ui/compositor", |
| 1018 "//ui/events:test_support", | 1020 "//ui/events:test_support", |
| 1019 "//ui/gl:test_support", | 1021 "//ui/gl:test_support", |
| 1020 "//ui/resources", | 1022 "//ui/resources", |
| 1021 "//ui/resources:ui_test_pak", | 1023 "//ui/resources:ui_test_pak", |
| 1022 "//ui/strings", | 1024 "//ui/strings", |
| 1023 ] | 1025 ] |
| 1024 } | 1026 } |
| 1025 } | 1027 } |
| OLD | NEW |