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 27 matching lines...) Expand all Loading... |
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", | 42 "//net", |
43 "//third_party/icu", | 43 "//third_party/icu", |
44 "//url", | 44 "//url", |
45 ] | 45 ] |
46 | 46 |
47 if (is_linux) { | 47 if (is_linux) { |
48 configs += [ | 48 configs += [ "//build/config/linux:fontconfig" ] |
49 "//build/config/linux:fontconfig", | |
50 "//build/config/linux:glib", | |
51 ] | |
52 } | 49 } |
53 | 50 |
54 libs = [] | 51 libs = [] |
55 if (is_win) { | 52 if (is_win) { |
56 cflags = [ | 53 cflags = [ |
57 "/wd4267", # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int. | 54 "/wd4267", # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int. |
58 "/wd4324", # Structure was padded due to __declspec(align()), which is | 55 "/wd4324", # Structure was padded due to __declspec(align()), which is |
59 # uninteresting. | 56 # uninteresting. |
60 ] | 57 ] |
61 ldflags = [ | 58 ldflags = [ |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 "//chromeos", | 197 "//chromeos", |
201 "//ui/aura:test_support", | 198 "//ui/aura:test_support", |
202 "//ui/events:gesture_detection", | 199 "//ui/events:gesture_detection", |
203 "//ui/chromeos:ui_chromeos", | 200 "//ui/chromeos:ui_chromeos", |
204 ] | 201 ] |
205 } | 202 } |
206 } | 203 } |
207 } | 204 } |
208 } | 205 } |
209 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 206 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |