| 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 } |
| 141 } | 145 } |
| 142 | 146 |
| 143 # Font copies. | 147 # Font copies. |
| 144 if (!is_mac) { | 148 if (!is_mac) { |
| 145 copy("copy_ahem") { | 149 copy("copy_ahem") { |
| 146 visibility = [ ":*" ] | 150 visibility = [ ":*" ] |
| 147 sources = [ | 151 sources = [ |
| 148 "resources/fonts/AHEM____.TTF", | 152 "resources/fonts/AHEM____.TTF", |
| 149 ] | 153 ] |
| 150 outputs = [ | 154 outputs = [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 208 |
| 205 if (use_x11) { | 209 if (use_x11) { |
| 206 deps += [ ":copy_x11_fonts" ] | 210 deps += [ ":copy_x11_fonts" ] |
| 207 data_deps += [ ":copy_x11_fonts" ] | 211 data_deps += [ ":copy_x11_fonts" ] |
| 208 } | 212 } |
| 209 if (is_android) { | 213 if (is_android) { |
| 210 deps += [ ":copy_android_fonts" ] | 214 deps += [ ":copy_android_fonts" ] |
| 211 data_deps += [ ":copy_android_fonts" ] | 215 data_deps += [ ":copy_android_fonts" ] |
| 212 } | 216 } |
| 213 } | 217 } |
| OLD | NEW |