| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 | 10 |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 } | 306 } |
| 307 | 307 |
| 308 if (use_pango) { | 308 if (use_pango) { |
| 309 configs += [ "//build/config/linux/pangocairo" ] | 309 configs += [ "//build/config/linux/pangocairo" ] |
| 310 } | 310 } |
| 311 | 311 |
| 312 if (is_android) { | 312 if (is_android) { |
| 313 sources += rebase_path(content_browser_gypi_values.android_browser_sources, | 313 sources += rebase_path(content_browser_gypi_values.android_browser_sources, |
| 314 ".", | 314 ".", |
| 315 "//content") | 315 "//content") |
| 316 |
| 316 sources -= [ | 317 sources -= [ |
| 317 "browser_ipc_logging.cc", | 318 "browser_ipc_logging.cc", |
| 318 "device_sensors/data_fetcher_shared_memory_default.cc", | 319 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 319 "geolocation/network_location_provider.cc", | 320 "geolocation/network_location_provider.cc", |
| 320 "geolocation/network_location_provider.h", | 321 "geolocation/network_location_provider.h", |
| 321 "geolocation/network_location_request.cc", | 322 "geolocation/network_location_request.cc", |
| 322 "geolocation/network_location_request.h", | 323 "geolocation/network_location_request.h", |
| 323 "media/session/media_session_delegate_default.cc", | 324 "media/session/media_session_delegate_default.cc", |
| 324 "power_usage_monitor_impl.cc", | 325 "power_usage_monitor_impl.cc", |
| 325 "power_usage_monitor_impl.h", | 326 "power_usage_monitor_impl.h", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 if (!is_component_build) { | 529 if (!is_component_build) { |
| 529 public_deps = [ | 530 public_deps = [ |
| 530 ":browser", | 531 ":browser", |
| 531 ] | 532 ] |
| 532 } else { | 533 } else { |
| 533 public_deps = [ | 534 public_deps = [ |
| 534 "//third_party/leveldatabase", | 535 "//third_party/leveldatabase", |
| 535 ] | 536 ] |
| 536 } | 537 } |
| 537 } | 538 } |
| OLD | NEW |