| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # See //content/BUILD.gn for how this works. | 7 # See //content/BUILD.gn for how this works. |
| 8 group("browser") { | 8 group("browser") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "appcache_service.h", | 38 "appcache_service.h", |
| 39 "ax_event_notification_details.cc", | 39 "ax_event_notification_details.cc", |
| 40 "ax_event_notification_details.h", | 40 "ax_event_notification_details.h", |
| 41 "background_sync_controller.h", | 41 "background_sync_controller.h", |
| 42 "background_sync_parameters.cc", | 42 "background_sync_parameters.cc", |
| 43 "background_sync_parameters.h", | 43 "background_sync_parameters.h", |
| 44 "background_tracing_config.cc", | 44 "background_tracing_config.cc", |
| 45 "background_tracing_config.h", | 45 "background_tracing_config.h", |
| 46 "background_tracing_manager.h", | 46 "background_tracing_manager.h", |
| 47 "blob_handle.h", | 47 "blob_handle.h", |
| 48 "bluetooth_allowed_devices_map_base.cc", |
| 49 "bluetooth_allowed_devices_map_base.h", |
| 48 "bluetooth_chooser.cc", | 50 "bluetooth_chooser.cc", |
| 49 "bluetooth_chooser.h", | 51 "bluetooth_chooser.h", |
| 50 "browser_accessibility_state.h", | 52 "browser_accessibility_state.h", |
| 51 "browser_associated_interface.h", | 53 "browser_associated_interface.h", |
| 52 "browser_child_process_host.h", | 54 "browser_child_process_host.h", |
| 53 "browser_child_process_host_delegate.cc", | 55 "browser_child_process_host_delegate.cc", |
| 54 "browser_child_process_host_delegate.h", | 56 "browser_child_process_host_delegate.h", |
| 55 "browser_child_process_host_iterator.cc", | 57 "browser_child_process_host_iterator.cc", |
| 56 "browser_child_process_host_iterator.h", | 58 "browser_child_process_host_iterator.h", |
| 57 "browser_child_process_observer.cc", | 59 "browser_child_process_observer.cc", |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 327 |
| 326 if (is_android) { | 328 if (is_android) { |
| 327 deps += [ "//ui/android" ] | 329 deps += [ "//ui/android" ] |
| 328 } | 330 } |
| 329 | 331 |
| 330 if (use_aura) { | 332 if (use_aura) { |
| 331 sources -= [ "context_factory.h" ] | 333 sources -= [ "context_factory.h" ] |
| 332 deps += [ "//ui/aura" ] | 334 deps += [ "//ui/aura" ] |
| 333 } | 335 } |
| 334 } | 336 } |
| OLD | NEW |