| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 "web_contents_user_data.h", | 259 "web_contents_user_data.h", |
| 260 "web_contents_view_delegate.cc", | 260 "web_contents_view_delegate.cc", |
| 261 "web_contents_view_delegate.h", | 261 "web_contents_view_delegate.h", |
| 262 "web_drag_dest_delegate.h", | 262 "web_drag_dest_delegate.h", |
| 263 "web_ui.h", | 263 "web_ui.h", |
| 264 "web_ui_controller.cc", | 264 "web_ui_controller.cc", |
| 265 "web_ui_controller.h", | 265 "web_ui_controller.h", |
| 266 "web_ui_controller_factory.h", | 266 "web_ui_controller_factory.h", |
| 267 "web_ui_data_source.h", | 267 "web_ui_data_source.h", |
| 268 "web_ui_message_handler.h", | 268 "web_ui_message_handler.h", |
| 269 "websocket_handshake_request_info.h", |
| 269 "worker_service.h", | 270 "worker_service.h", |
| 270 "worker_service_observer.h", | 271 "worker_service_observer.h", |
| 271 "zoom_level_delegate.h", | 272 "zoom_level_delegate.h", |
| 272 "zygote_handle_linux.h", | 273 "zygote_handle_linux.h", |
| 273 "zygote_host_linux.h", | 274 "zygote_host_linux.h", |
| 274 ] | 275 ] |
| 275 configs += [ | 276 configs += [ |
| 276 "//build/config:precompiled_headers", | 277 "//build/config:precompiled_headers", |
| 277 "//build/config/compiler:wexit_time_destructors", | 278 "//build/config/compiler:wexit_time_destructors", |
| 278 "//content:content_implementation", | 279 "//content:content_implementation", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 314 |
| 314 if (is_android) { | 315 if (is_android) { |
| 315 deps += [ "//ui/android" ] | 316 deps += [ "//ui/android" ] |
| 316 } | 317 } |
| 317 | 318 |
| 318 if (use_aura) { | 319 if (use_aura) { |
| 319 sources -= [ "context_factory.h" ] | 320 sources -= [ "context_factory.h" ] |
| 320 deps += [ "//ui/aura" ] | 321 deps += [ "//ui/aura" ] |
| 321 } | 322 } |
| 322 } | 323 } |
| OLD | NEW |