| 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 15 matching lines...) Expand all Loading... |
| 26 ".", | 26 ".", |
| 27 "//content") | 27 "//content") |
| 28 | 28 |
| 29 configs += [ | 29 configs += [ |
| 30 "//build/config:precompiled_headers", | 30 "//build/config:precompiled_headers", |
| 31 "//build/config/compiler:wexit_time_destructors", | 31 "//build/config/compiler:wexit_time_destructors", |
| 32 "//content:content_implementation", | 32 "//content:content_implementation", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 public_deps = [ | 35 public_deps = [ |
| 36 "//content/public/common:interfaces", |
| 36 "//mojo/public/cpp/bindings", | 37 "//mojo/public/cpp/bindings", |
| 37 "//mojo/public/cpp/system", | 38 "//mojo/public/cpp/system", |
| 38 "//services/shell/public/cpp", | 39 "//services/shell/public/cpp", |
| 39 | 40 |
| 40 # We expose skia headers in the public API. | 41 # We expose skia headers in the public API. |
| 41 "//skia", | 42 "//skia", |
| 42 "//third_party/WebKit/public:mojo_bindings", | 43 "//third_party/WebKit/public:mojo_bindings", |
| 43 ] | 44 ] |
| 44 deps = [ | 45 deps = [ |
| 45 "//cc", | 46 "//cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 67 | 68 |
| 68 if (is_android) { | 69 if (is_android) { |
| 69 deps += [ "//ui/android" ] | 70 deps += [ "//ui/android" ] |
| 70 } | 71 } |
| 71 | 72 |
| 72 if (use_aura) { | 73 if (use_aura) { |
| 73 sources -= [ "context_factory.h" ] | 74 sources -= [ "context_factory.h" ] |
| 74 deps += [ "//ui/aura" ] | 75 deps += [ "//ui/aura" ] |
| 75 } | 76 } |
| 76 } | 77 } |
| OLD | NEW |