OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "//v8", | 131 "//v8", |
132 ] | 132 ] |
133 | 133 |
134 data_deps = [ | 134 data_deps = [ |
135 ":resources", | 135 ":resources", |
136 ] | 136 ] |
137 | 137 |
138 if (is_mac) { | 138 if (is_mac) { |
139 libs = [ "AppKit.framework" ] | 139 libs = [ "AppKit.framework" ] |
140 } | 140 } |
141 | |
142 if (is_android) { | |
143 deps += [ "//base/test:test_support_main_stub" ] | |
144 } | |
145 } | 141 } |
146 | 142 |
147 # Font copies. | 143 # Font copies. |
148 if (!is_mac) { | 144 if (!is_mac) { |
149 copy("copy_ahem") { | 145 copy("copy_ahem") { |
150 visibility = [ ":*" ] | 146 visibility = [ ":*" ] |
151 sources = [ | 147 sources = [ |
152 "resources/fonts/AHEM____.TTF", | 148 "resources/fonts/AHEM____.TTF", |
153 ] | 149 ] |
154 outputs = [ | 150 outputs = [ |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 | 204 |
209 if (use_x11) { | 205 if (use_x11) { |
210 deps += [ ":copy_x11_fonts" ] | 206 deps += [ ":copy_x11_fonts" ] |
211 data_deps += [ ":copy_x11_fonts" ] | 207 data_deps += [ ":copy_x11_fonts" ] |
212 } | 208 } |
213 if (is_android) { | 209 if (is_android) { |
214 deps += [ ":copy_android_fonts" ] | 210 deps += [ ":copy_android_fonts" ] |
215 data_deps += [ ":copy_android_fonts" ] | 211 data_deps += [ ":copy_android_fonts" ] |
216 } | 212 } |
217 } | 213 } |
OLD | NEW |