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("//content/browser/browser.gni") | 5 import("//content/browser/browser.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
9 group("browser") { | 9 group("browser") { |
10 if (is_component_build) { | 10 if (is_component_build) { |
(...skipping 23 matching lines...) Expand all Loading... | |
34 "web_ui_controller.cc", | 34 "web_ui_controller.cc", |
35 ] | 35 ] |
36 } else { | 36 } else { |
37 sources = rebase_path(content_browser_gypi_values.public_browser_sources, | 37 sources = rebase_path(content_browser_gypi_values.public_browser_sources, |
38 ".", | 38 ".", |
39 "//content") | 39 "//content") |
40 } | 40 } |
41 | 41 |
42 if (use_aura) { | 42 if (use_aura) { |
43 sources -= [ "context_factory.h" ] | 43 sources -= [ "context_factory.h" ] |
44 | |
45 if (is_android) { | |
46 sources -= [ | |
47 "android/browser_media_player_manager_register.cc", | |
no sievers
2015/10/20 19:24:22
keep these
| |
48 "android/browser_media_player_manager_register.h", | |
49 ] | |
50 } | |
44 } | 51 } |
45 | 52 |
46 configs += [ | 53 configs += [ |
47 "//build/config:precompiled_headers", | 54 "//build/config:precompiled_headers", |
48 "//content:content_implementation", | 55 "//content:content_implementation", |
49 ] | 56 ] |
50 | 57 |
51 public_deps = [ | 58 public_deps = [ |
52 "//content/public/common:mojo_bindings", | 59 "//content/public/common:mojo_bindings", |
53 | 60 |
(...skipping 10 matching lines...) Expand all Loading... | |
64 "//ui/base", | 71 "//ui/base", |
65 "//ui/events", | 72 "//ui/events", |
66 ] | 73 ] |
67 | 74 |
68 allow_circular_includes_from = [ | 75 allow_circular_includes_from = [ |
69 # This target is a pair with content/browser. They always go together and | 76 # This target is a pair with content/browser. They always go together and |
70 # include headers from each other. | 77 # include headers from each other. |
71 "//content/browser", | 78 "//content/browser", |
72 ] | 79 ] |
73 } | 80 } |
OLD | NEW |