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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 gypi_values.chrome_browser_extensions_networking_private_sources, | 183 gypi_values.chrome_browser_extensions_networking_private_sources, |
184 ".", "//chrome") | 184 ".", "//chrome") |
185 } | 185 } |
186 | 186 |
187 if (is_win) { | 187 if (is_win) { |
188 deps += [ | 188 deps += [ |
189 "//third_party/iaccessible2", | 189 "//third_party/iaccessible2", |
190 "//third_party/isimpledom", | 190 "//third_party/isimpledom", |
191 ] | 191 ] |
192 } else if (!is_chromeos) { | 192 } else if (!is_chromeos) { |
193 sources += [ "api/system_display/display_info_provider_aura.cc" ] | 193 sources += [ |
| 194 "display_info_provider_aura.cc", |
| 195 "display_info_provider_aura.h", |
| 196 ] |
194 } | 197 } |
195 | 198 |
196 if (enable_app_list) { | 199 if (enable_app_list) { |
197 sources += rebase_path( | 200 sources += rebase_path( |
198 gypi_values.chrome_browser_extensions_app_list_sources, | 201 gypi_values.chrome_browser_extensions_app_list_sources, |
199 ".", "//chrome") | 202 ".", "//chrome") |
200 } | 203 } |
201 | 204 |
202 if (!use_ozone) { | 205 if (!use_ozone) { |
203 sources -= [ | 206 sources -= [ |
204 "global_shortcut_listener_ozone.cc", | 207 "global_shortcut_listener_ozone.cc", |
205 ] | 208 ] |
206 } | 209 } |
207 } | 210 } |
OLD | NEW |