| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "speech_recognition_session_config.cc", | 231 "speech_recognition_session_config.cc", |
| 232 "speech_recognition_session_config.h", | 232 "speech_recognition_session_config.h", |
| 233 "speech_recognition_session_context.cc", | 233 "speech_recognition_session_context.cc", |
| 234 "speech_recognition_session_context.h", | 234 "speech_recognition_session_context.h", |
| 235 "speech_recognition_session_preamble.cc", | 235 "speech_recognition_session_preamble.cc", |
| 236 "speech_recognition_session_preamble.h", | 236 "speech_recognition_session_preamble.h", |
| 237 "ssl_host_state_delegate.h", | 237 "ssl_host_state_delegate.h", |
| 238 "ssl_status.cc", | 238 "ssl_status.cc", |
| 239 "ssl_status.h", | 239 "ssl_status.h", |
| 240 "storage_partition.h", | 240 "storage_partition.h", |
| 241 "storage_partition_http_cache_data_remover.h", |
| 241 "stream_handle.h", | 242 "stream_handle.h", |
| 242 "stream_info.cc", | 243 "stream_info.cc", |
| 243 "stream_info.h", | 244 "stream_info.h", |
| 244 "trace_uploader.h", | 245 "trace_uploader.h", |
| 245 "tracing_controller.h", | 246 "tracing_controller.h", |
| 246 "tracing_delegate.cc", | 247 "tracing_delegate.cc", |
| 247 "tracing_delegate.h", | 248 "tracing_delegate.h", |
| 248 "url_data_source.cc", | 249 "url_data_source.cc", |
| 249 "url_data_source.h", | 250 "url_data_source.h", |
| 250 "user_metrics.h", | 251 "user_metrics.h", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 324 |
| 324 if (is_android) { | 325 if (is_android) { |
| 325 deps += [ "//ui/android" ] | 326 deps += [ "//ui/android" ] |
| 326 } | 327 } |
| 327 | 328 |
| 328 if (use_aura) { | 329 if (use_aura) { |
| 329 sources -= [ "context_factory.h" ] | 330 sources -= [ "context_factory.h" ] |
| 330 deps += [ "//ui/aura" ] | 331 deps += [ "//ui/aura" ] |
| 331 } | 332 } |
| 332 } | 333 } |
| OLD | NEW |