| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "resource_dispatcher_host_delegate.h", | 210 "resource_dispatcher_host_delegate.h", |
| 211 "resource_dispatcher_host_login_delegate.h", | 211 "resource_dispatcher_host_login_delegate.h", |
| 212 "resource_hints.h", | 212 "resource_hints.h", |
| 213 "resource_request_details.cc", | 213 "resource_request_details.cc", |
| 214 "resource_request_details.h", | 214 "resource_request_details.h", |
| 215 "resource_request_info.h", | 215 "resource_request_info.h", |
| 216 "resource_throttle.cc", | 216 "resource_throttle.cc", |
| 217 "resource_throttle.h", | 217 "resource_throttle.h", |
| 218 "save_page_type.h", | 218 "save_page_type.h", |
| 219 "screen_orientation_delegate.h", | 219 "screen_orientation_delegate.h", |
| 220 "screen_orientation_provider.cc", | |
| 221 "screen_orientation_provider.h", | |
| 222 "security_style_explanation.h", | 220 "security_style_explanation.h", |
| 223 "security_style_explanations.cc", | 221 "security_style_explanations.cc", |
| 224 "security_style_explanations.h", | 222 "security_style_explanations.h", |
| 225 "service_worker_context.h", | 223 "service_worker_context.h", |
| 226 "service_worker_usage_info.cc", | 224 "service_worker_usage_info.cc", |
| 227 "service_worker_usage_info.h", | 225 "service_worker_usage_info.h", |
| 228 "session_storage_namespace.h", | 226 "session_storage_namespace.h", |
| 229 "session_storage_usage_info.h", | 227 "session_storage_usage_info.h", |
| 230 "site_instance.h", | 228 "site_instance.h", |
| 231 "speech_recognition_event_listener.h", | 229 "speech_recognition_event_listener.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "zygote_handle_linux.h", | 281 "zygote_handle_linux.h", |
| 284 "zygote_host_linux.h", | 282 "zygote_host_linux.h", |
| 285 ] | 283 ] |
| 286 configs += [ | 284 configs += [ |
| 287 "//build/config:precompiled_headers", | 285 "//build/config:precompiled_headers", |
| 288 "//build/config/compiler:wexit_time_destructors", | 286 "//build/config/compiler:wexit_time_destructors", |
| 289 "//content:content_implementation", | 287 "//content:content_implementation", |
| 290 ] | 288 ] |
| 291 | 289 |
| 292 public_deps = [ | 290 public_deps = [ |
| 293 "//device/screen_orientation/public/interfaces", | |
| 294 "//mojo/public/cpp/bindings", | 291 "//mojo/public/cpp/bindings", |
| 295 "//mojo/public/cpp/system", | 292 "//mojo/public/cpp/system", |
| 296 "//services/service_manager/public/cpp", | 293 "//services/service_manager/public/cpp", |
| 297 | 294 |
| 298 # We expose skia headers in the public API. | 295 # We expose skia headers in the public API. |
| 299 "//skia", | 296 "//skia", |
| 300 | 297 |
| 301 # We expose storage headers for quota in the public API. | 298 # We expose storage headers for quota in the public API. |
| 302 "//storage/browser", | 299 "//storage/browser", |
| 303 "//third_party/WebKit/public:mojo_bindings", | 300 "//third_party/WebKit/public:mojo_bindings", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 327 | 324 |
| 328 if (is_android) { | 325 if (is_android) { |
| 329 deps += [ "//ui/android" ] | 326 deps += [ "//ui/android" ] |
| 330 } | 327 } |
| 331 | 328 |
| 332 if (use_aura) { | 329 if (use_aura) { |
| 333 sources -= [ "context_factory.h" ] | 330 sources -= [ "context_factory.h" ] |
| 334 deps += [ "//ui/aura" ] | 331 deps += [ "//ui/aura" ] |
| 335 } | 332 } |
| 336 } | 333 } |
| OLD | NEW |