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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 gypi_values.chrome_browser_extensions_networking_private_sources, | 184 gypi_values.chrome_browser_extensions_networking_private_sources, |
185 ".", "//chrome") | 185 ".", "//chrome") |
186 } | 186 } |
187 | 187 |
188 if (is_win) { | 188 if (is_win) { |
189 deps += [ | 189 deps += [ |
190 "//third_party/iaccessible2", | 190 "//third_party/iaccessible2", |
191 "//third_party/isimpledom", | 191 "//third_party/isimpledom", |
192 ] | 192 ] |
193 } else if (!is_chromeos) { | 193 } else if (!is_chromeos) { |
194 sources += [ "api/system_display/display_info_provider_aura.cc" ] | 194 sources += [ "display_info_provider_impl_aura.cc" ] |
195 } | 195 } |
196 | 196 |
197 if (enable_app_list) { | 197 if (enable_app_list) { |
198 sources += rebase_path( | 198 sources += rebase_path( |
199 gypi_values.chrome_browser_extensions_app_list_sources, | 199 gypi_values.chrome_browser_extensions_app_list_sources, |
200 ".", "//chrome") | 200 ".", "//chrome") |
201 } | 201 } |
202 | 202 |
203 if (!use_ozone) { | 203 if (!use_ozone) { |
204 sources -= [ | 204 sources -= [ |
205 "global_shortcut_listener_ozone.cc", | 205 "global_shortcut_listener_ozone.cc", |
206 ] | 206 ] |
207 } | 207 } |
208 } | 208 } |
OLD | NEW |