| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 gypi_values.chrome_browser_extensions_networking_private_sources, | 192 gypi_values.chrome_browser_extensions_networking_private_sources, |
| 193 ".", "//chrome") | 193 ".", "//chrome") |
| 194 } | 194 } |
| 195 | 195 |
| 196 if (is_win) { | 196 if (is_win) { |
| 197 deps += [ | 197 deps += [ |
| 198 "//third_party/iaccessible2", | 198 "//third_party/iaccessible2", |
| 199 "//third_party/isimpledom", | 199 "//third_party/isimpledom", |
| 200 #'launcher_support', TODO(GYP) | 200 #'launcher_support', TODO(GYP) |
| 201 ] | 201 ] |
| 202 } else if (!is_chromeos) { | |
| 203 sources += [ "api/system_display/display_info_provider_aura.cc" ] | |
| 204 } | 202 } |
| 205 | 203 |
| 206 if (use_openssl) { | 204 if (use_openssl) { |
| 207 sources += [ "api/cast_channel/cast_auth_util_openssl.cc" ] | 205 sources += [ "api/cast_channel/cast_auth_util_openssl.cc" ] |
| 208 } else { | 206 } else { |
| 209 # cast_auth_util_nss.cc uses NSS functions. | 207 # cast_auth_util_nss.cc uses NSS functions. |
| 210 sources += [ "api/cast_channel/cast_auth_util_nss.cc" ] | 208 sources += [ "api/cast_channel/cast_auth_util_nss.cc" ] |
| 211 } | 209 } |
| 212 | 210 |
| 213 if (is_android) { | 211 if (is_android) { |
| 214 sources += rebase_path( | 212 sources += rebase_path( |
| 215 gypi_values.chrome_browser_extensions_android_sources, | 213 gypi_values.chrome_browser_extensions_android_sources, |
| 216 ".", "//chrome") | 214 ".", "//chrome") |
| 217 } | 215 } |
| 218 | 216 |
| 219 if (enable_app_list) { | 217 if (enable_app_list) { |
| 220 sources += rebase_path( | 218 sources += rebase_path( |
| 221 gypi_values.chrome_browser_extensions_app_list_sources, | 219 gypi_values.chrome_browser_extensions_app_list_sources, |
| 222 ".", "//chrome") | 220 ".", "//chrome") |
| 223 } | 221 } |
| 224 } | 222 } |
| 225 } | 223 } |
| OLD | NEW |