| 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 19 matching lines...) Expand all Loading... |
| 30 "android/content_view_core.h", | 30 "android/content_view_core.h", |
| 31 "android/content_view_layer_renderer.h", | 31 "android/content_view_layer_renderer.h", |
| 32 "android/devtools_auth.h", | 32 "android/devtools_auth.h", |
| 33 "android/java_interfaces.h", | 33 "android/java_interfaces.h", |
| 34 "android/synchronous_compositor.cc", | 34 "android/synchronous_compositor.cc", |
| 35 "android/synchronous_compositor.h", | 35 "android/synchronous_compositor.h", |
| 36 "android/synchronous_compositor_client.h", | 36 "android/synchronous_compositor_client.h", |
| 37 "appcache_service.h", | 37 "appcache_service.h", |
| 38 "ax_event_notification_details.cc", | 38 "ax_event_notification_details.cc", |
| 39 "ax_event_notification_details.h", | 39 "ax_event_notification_details.h", |
| 40 "background_fetch_client.h", |
| 40 "background_sync_controller.h", | 41 "background_sync_controller.h", |
| 41 "background_sync_parameters.cc", | 42 "background_sync_parameters.cc", |
| 42 "background_sync_parameters.h", | 43 "background_sync_parameters.h", |
| 43 "background_tracing_config.cc", | 44 "background_tracing_config.cc", |
| 44 "background_tracing_config.h", | 45 "background_tracing_config.h", |
| 45 "background_tracing_manager.h", | 46 "background_tracing_manager.h", |
| 46 "blob_handle.h", | 47 "blob_handle.h", |
| 47 "bluetooth_chooser.cc", | 48 "bluetooth_chooser.cc", |
| 48 "bluetooth_chooser.h", | 49 "bluetooth_chooser.h", |
| 49 "browser_accessibility_state.h", | 50 "browser_accessibility_state.h", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 | 335 |
| 335 if (use_aura) { | 336 if (use_aura) { |
| 336 sources -= [ "context_factory.h" ] | 337 sources -= [ "context_factory.h" ] |
| 337 deps += [ "//ui/aura" ] | 338 deps += [ "//ui/aura" ] |
| 338 } | 339 } |
| 339 | 340 |
| 340 if (!is_android) { | 341 if (!is_android) { |
| 341 sources += [ "devtools_frontend_host.h" ] | 342 sources += [ "devtools_frontend_host.h" ] |
| 342 } | 343 } |
| 343 } | 344 } |
| OLD | NEW |