| 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 import("//content/content.gni") |
| 6 | 7 |
| 7 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
| 8 group("browser") { | 9 group("browser") { |
| 9 if (is_component_build) { | 10 if (is_component_build) { |
| 10 public_deps = [ | 11 public_deps = [ |
| 11 "//content", | 12 "//content", |
| 12 ] | 13 ] |
| 13 } else { | 14 } else { |
| 14 public_deps = [ | 15 public_deps = [ |
| 15 ":browser_sources", | 16 ":browser_sources", |
| 16 ] | 17 ] |
| 17 } | 18 } |
| 18 } | 19 } |
| 19 | 20 |
| 20 source_set("browser_sources") { | 21 content_source_set("browser_sources") { |
| 21 # External code should depend on via ":browser" above. | 22 # External code should depend on via ":browser" above. |
| 22 visibility = [ "//content/*" ] | 23 visibility = [ "//content/*" ] |
| 23 | |
| 24 sources = [ | 24 sources = [ |
| 25 "android/android_overlay_provider.h", | 25 "android/android_overlay_provider.h", |
| 26 "android/browser_media_player_manager_register.cc", | 26 "android/browser_media_player_manager_register.cc", |
| 27 "android/browser_media_player_manager_register.h", | 27 "android/browser_media_player_manager_register.h", |
| 28 "android/compositor.h", | 28 "android/compositor.h", |
| 29 "android/compositor_client.h", | 29 "android/compositor_client.h", |
| 30 "android/content_protocol_handler.h", | 30 "android/content_protocol_handler.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", |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ] | 355 ] |
| 356 } | 356 } |
| 357 | 357 |
| 358 if (is_chromeos) { | 358 if (is_chromeos) { |
| 359 sources += [ | 359 sources += [ |
| 360 "arc_tracing_agent.cc", | 360 "arc_tracing_agent.cc", |
| 361 "arc_tracing_agent.h", | 361 "arc_tracing_agent.h", |
| 362 ] | 362 ] |
| 363 } | 363 } |
| 364 } | 364 } |
| OLD | NEW |