| 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 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//ui/events", | 32 "//ui/events", |
| 33 "//ui/events/platform", | 33 "//ui/events/platform", |
| 34 "//ui/events:events_base", | 34 "//ui/events:events_base", |
| 35 "//ui/gfx", | 35 "//ui/gfx", |
| 36 "//ui/gfx/geometry", | 36 "//ui/gfx/geometry", |
| 37 ] | 37 ] |
| 38 deps = [ | 38 deps = [ |
| 39 "//base/third_party/dynamic_annotations", | 39 "//base/third_party/dynamic_annotations", |
| 40 "//base:base_static", | 40 "//base:base_static", |
| 41 "//base:i18n", | 41 "//base:i18n", |
| 42 "//net", | |
| 43 "//third_party/icu", | 42 "//third_party/icu", |
| 44 "//url", | 43 "//url", |
| 45 ] | 44 ] |
| 46 | 45 |
| 47 if (is_linux) { | 46 if (is_linux) { |
| 48 configs += [ "//build/config/linux:fontconfig" ] | 47 configs += [ "//build/config/linux:fontconfig" ] |
| 49 } | 48 } |
| 50 | 49 |
| 51 libs = [] | 50 libs = [] |
| 52 if (is_win) { | 51 if (is_win) { |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "//chromeos", | 196 "//chromeos", |
| 198 "//ui/aura:test_support", | 197 "//ui/aura:test_support", |
| 199 "//ui/events:gesture_detection", | 198 "//ui/events:gesture_detection", |
| 200 "//ui/chromeos:ui_chromeos", | 199 "//ui/chromeos:ui_chromeos", |
| 201 ] | 200 ] |
| 202 } | 201 } |
| 203 } | 202 } |
| 204 } | 203 } |
| 205 } | 204 } |
| 206 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 205 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |