Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: chrome/browser/extensions/BUILD.gn

Issue 422453004: Remove some dead app host code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more removals from sam Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/chrome_browser_main_win.cc ('k') | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 deps += [ "//components/wifi" ] 190 deps += [ "//components/wifi" ]
191 sources += rebase_path( 191 sources += rebase_path(
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)
201 ] 200 ]
202 } else if (!is_chromeos) { 201 } else if (!is_chromeos) {
203 sources += [ "api/system_display/display_info_provider_aura.cc" ] 202 sources += [ "api/system_display/display_info_provider_aura.cc" ]
204 } 203 }
205 204
206 if (use_openssl) { 205 if (use_openssl) {
207 sources += [ "api/cast_channel/cast_auth_util_openssl.cc" ] 206 sources += [ "api/cast_channel/cast_auth_util_openssl.cc" ]
208 } else { 207 } else {
209 # cast_auth_util_nss.cc uses NSS functions. 208 # cast_auth_util_nss.cc uses NSS functions.
210 sources += [ "api/cast_channel/cast_auth_util_nss.cc" ] 209 sources += [ "api/cast_channel/cast_auth_util_nss.cc" ]
(...skipping 11 matching lines...) Expand all
222 ".", "//chrome") 221 ".", "//chrome")
223 } 222 }
224 223
225 if (!use_ozone) { 224 if (!use_ozone) {
226 sources -= [ 225 sources -= [
227 "global_shortcut_listener_ozone.cc", 226 "global_shortcut_listener_ozone.cc",
228 ] 227 ]
229 } 228 }
230 } 229 }
231 } 230 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main_win.cc ('k') | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698