| 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 += [ |
| 195 "display_info_provider_aura.cc", |
| 196 "display_info_provider_aura.h", |
| 197 ] |
| 195 } | 198 } |
| 196 | 199 |
| 197 if (enable_app_list) { | 200 if (enable_app_list) { |
| 198 sources += rebase_path( | 201 sources += rebase_path( |
| 199 gypi_values.chrome_browser_extensions_app_list_sources, | 202 gypi_values.chrome_browser_extensions_app_list_sources, |
| 200 ".", "//chrome") | 203 ".", "//chrome") |
| 201 } | 204 } |
| 202 | 205 |
| 203 if (!use_ozone) { | 206 if (!use_ozone) { |
| 204 sources -= [ | 207 sources -= [ |
| 205 "global_shortcut_listener_ozone.cc", | 208 "global_shortcut_listener_ozone.cc", |
| 206 ] | 209 ] |
| 207 } | 210 } |
| 208 } | 211 } |
| OLD | NEW |