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 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 } | 321 } |
322 | 322 |
323 if (use_pango) { | 323 if (use_pango) { |
324 configs += [ "//build/config/linux:pangocairo" ] | 324 configs += [ "//build/config/linux:pangocairo" ] |
325 } | 325 } |
326 | 326 |
327 if (is_android) { | 327 if (is_android) { |
328 sources += rebase_path(content_browser_gypi_values.android_browser_sources, | 328 sources += rebase_path(content_browser_gypi_values.android_browser_sources, |
329 ".", | 329 ".", |
330 "//content") | 330 "//content") |
| 331 sources += rebase_path( |
| 332 content_browser_gypi_values.android_in_process_browser_sources, |
| 333 ".", |
| 334 "//content") |
331 sources -= [ | 335 sources -= [ |
332 "browser_ipc_logging.cc", | 336 "browser_ipc_logging.cc", |
333 "device_sensors/data_fetcher_shared_memory_default.cc", | 337 "device_sensors/data_fetcher_shared_memory_default.cc", |
334 "geolocation/network_location_provider.cc", | 338 "geolocation/network_location_provider.cc", |
335 "geolocation/network_location_provider.h", | 339 "geolocation/network_location_provider.h", |
336 "geolocation/network_location_request.cc", | 340 "geolocation/network_location_request.cc", |
337 "geolocation/network_location_request.h", | 341 "geolocation/network_location_request.h", |
338 "power_usage_monitor_impl.cc", | 342 "power_usage_monitor_impl.cc", |
339 "power_usage_monitor_impl.h", | 343 "power_usage_monitor_impl.h", |
340 "renderer_host/begin_frame_observer_proxy.cc", | 344 "renderer_host/begin_frame_observer_proxy.cc", |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 | 512 |
509 if (enable_webvr && is_android) { | 513 if (enable_webvr && is_android) { |
510 sources += [ | 514 sources += [ |
511 "vr/android/cardboard/cardboard_vr_device.cc", | 515 "vr/android/cardboard/cardboard_vr_device.cc", |
512 "vr/android/cardboard/cardboard_vr_device.h", | 516 "vr/android/cardboard/cardboard_vr_device.h", |
513 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 517 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
514 "vr/android/cardboard/cardboard_vr_device_provider.h", | 518 "vr/android/cardboard/cardboard_vr_device_provider.h", |
515 ] | 519 ] |
516 } | 520 } |
517 } | 521 } |
OLD | NEW |