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", | 49 |
50 "//build/config/linux:glib", | 50 if (use_glib) { |
jamesr
2015/01/22 23:12:05
we never set this, right? can you just delete the
| |
51 ] | 51 configs += [ "//build/config/linux:glib" ] |
52 } | |
52 } | 53 } |
53 | 54 |
54 libs = [] | 55 libs = [] |
55 if (is_win) { | 56 if (is_win) { |
56 cflags = [ | 57 cflags = [ |
57 "/wd4267", # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int. | 58 "/wd4267", # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int. |
58 "/wd4324", # Structure was padded due to __declspec(align()), which is | 59 "/wd4324", # Structure was padded due to __declspec(align()), which is |
59 # uninteresting. | 60 # uninteresting. |
60 ] | 61 ] |
61 ldflags = [ | 62 ldflags = [ |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
200 "//chromeos", | 201 "//chromeos", |
201 "//ui/aura:test_support", | 202 "//ui/aura:test_support", |
202 "//ui/events:gesture_detection", | 203 "//ui/events:gesture_detection", |
203 "//ui/chromeos:ui_chromeos", | 204 "//ui/chromeos:ui_chromeos", |
204 ] | 205 ] |
205 } | 206 } |
206 } | 207 } |
207 } | 208 } |
208 } | 209 } |
209 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 210 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |