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

Side by Side Diff: content/browser/BUILD.gn

Issue 896583003: Add risk data to getrealpan request. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes for android Created 5 years, 10 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
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 import("//content/browser/browser.gni") 8 import("//content/browser/browser.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 configs += [ "//build/config/linux:pangocairo" ] 293 configs += [ "//build/config/linux:pangocairo" ]
294 } 294 }
295 295
296 if (is_android) { 296 if (is_android) {
297 sources += rebase_path(content_browser_gypi_values.android_browser_sources, 297 sources += rebase_path(content_browser_gypi_values.android_browser_sources,
298 ".", 298 ".",
299 "//content") 299 "//content")
300 sources -= [ 300 sources -= [
301 "browser_ipc_logging.cc", 301 "browser_ipc_logging.cc",
302 "device_sensors/data_fetcher_shared_memory_default.cc", 302 "device_sensors/data_fetcher_shared_memory_default.cc",
303 "font_list_async.cc",
304 "geolocation/network_location_provider.cc", 303 "geolocation/network_location_provider.cc",
305 "geolocation/network_location_provider.h", 304 "geolocation/network_location_provider.h",
306 "geolocation/network_location_request.cc", 305 "geolocation/network_location_request.cc",
307 "geolocation/network_location_request.h", 306 "geolocation/network_location_request.h",
308 "tracing/tracing_ui.cc", 307 "tracing/tracing_ui.cc",
309 "tracing/tracing_ui.h", 308 "tracing/tracing_ui.h",
310 309
311 # Android skips most, but not all, of the speech code. 310 # Android skips most, but not all, of the speech code.
312 "speech/audio_buffer.cc", 311 "speech/audio_buffer.cc",
313 "speech/audio_buffer.h", 312 "speech/audio_buffer.h",
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 } 434 }
436 435
437 if (is_linux && use_openssl) { 436 if (is_linux && use_openssl) {
438 deps += [ "//third_party/boringssl" ] 437 deps += [ "//third_party/boringssl" ]
439 } 438 }
440 439
441 if (enable_media_mojo_renderer) { 440 if (enable_media_mojo_renderer) {
442 deps += [ "//media/mojo/services:renderer_service" ] 441 deps += [ "//media/mojo/services:renderer_service" ]
443 } 442 }
444 } 443 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698