| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "url_data_source.cc", | 240 "url_data_source.cc", |
| 241 "url_data_source.h", | 241 "url_data_source.h", |
| 242 "user_metrics.h", | 242 "user_metrics.h", |
| 243 "utility_process_host.h", | 243 "utility_process_host.h", |
| 244 "utility_process_mojo_client.h", | 244 "utility_process_mojo_client.h", |
| 245 "vpn_service_proxy.h", | 245 "vpn_service_proxy.h", |
| 246 "web_contents.cc", | 246 "web_contents.cc", |
| 247 "web_contents.h", | 247 "web_contents.h", |
| 248 "web_contents_delegate.cc", | 248 "web_contents_delegate.cc", |
| 249 "web_contents_delegate.h", | 249 "web_contents_delegate.h", |
| 250 "web_contents_frame_interface_binding.h", |
| 251 "web_contents_interface_registry.h", |
| 250 "web_contents_media_capture_id.cc", | 252 "web_contents_media_capture_id.cc", |
| 251 "web_contents_media_capture_id.h", | 253 "web_contents_media_capture_id.h", |
| 252 "web_contents_observer.cc", | 254 "web_contents_observer.cc", |
| 253 "web_contents_observer.h", | 255 "web_contents_observer.h", |
| 254 "web_contents_user_data.h", | 256 "web_contents_user_data.h", |
| 255 "web_contents_view_delegate.cc", | 257 "web_contents_view_delegate.cc", |
| 256 "web_contents_view_delegate.h", | 258 "web_contents_view_delegate.h", |
| 257 "web_drag_dest_delegate.h", | 259 "web_drag_dest_delegate.h", |
| 258 "web_ui.h", | 260 "web_ui.h", |
| 259 "web_ui_controller.cc", | 261 "web_ui_controller.cc", |
| 260 "web_ui_controller.h", | 262 "web_ui_controller.h", |
| 261 "web_ui_controller_factory.h", | 263 "web_ui_controller_factory.h", |
| 262 "web_ui_data_source.h", | 264 "web_ui_data_source.h", |
| 263 "web_ui_message_handler.h", | 265 "web_ui_message_handler.h", |
| 264 "worker_service.h", | 266 "worker_service.h", |
| 265 "worker_service_observer.h", | 267 "worker_service_observer.h", |
| 266 "zoom_level_delegate.h", | 268 "zoom_level_delegate.h", |
| 267 "zygote_handle_linux.h", | 269 "zygote_handle_linux.h", |
| 268 "zygote_host_linux.h", | 270 "zygote_host_linux.h", |
| 269 ] | 271 ] |
| 270 configs += [ | 272 configs += [ |
| 271 "//build/config:precompiled_headers", | 273 "//build/config:precompiled_headers", |
| 272 "//build/config/compiler:wexit_time_destructors", | 274 "//build/config/compiler:wexit_time_destructors", |
| 273 "//content:content_implementation", | 275 "//content:content_implementation", |
| 274 ] | 276 ] |
| 275 | 277 |
| 276 public_deps = [ | 278 public_deps = [ |
| 279 "//content/public/common:interfaces", |
| 277 "//mojo/public/cpp/bindings", | 280 "//mojo/public/cpp/bindings", |
| 278 "//mojo/public/cpp/system", | 281 "//mojo/public/cpp/system", |
| 279 "//services/shell/public/cpp", | 282 "//services/shell/public/cpp", |
| 280 | 283 |
| 281 # We expose skia headers in the public API. | 284 # We expose skia headers in the public API. |
| 282 "//skia", | 285 "//skia", |
| 283 "//third_party/WebKit/public:mojo_bindings", | 286 "//third_party/WebKit/public:mojo_bindings", |
| 284 ] | 287 ] |
| 285 deps = [ | 288 deps = [ |
| 286 "//cc", | 289 "//cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 308 | 311 |
| 309 if (is_android) { | 312 if (is_android) { |
| 310 deps += [ "//ui/android" ] | 313 deps += [ "//ui/android" ] |
| 311 } | 314 } |
| 312 | 315 |
| 313 if (use_aura) { | 316 if (use_aura) { |
| 314 sources -= [ "context_factory.h" ] | 317 sources -= [ "context_factory.h" ] |
| 315 deps += [ "//ui/aura" ] | 318 deps += [ "//ui/aura" ] |
| 316 } | 319 } |
| 317 } | 320 } |
| OLD | NEW |