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 source_set("browser") { | 8 source_set("browser") { |
9 if (is_ios) { | 9 if (is_ios) { |
10 # iOS doesn't get the normal file list and only takes these whitelisted | 10 # iOS doesn't get the normal file list and only takes these whitelisted |
(...skipping 15 matching lines...) Expand all Loading... |
26 if (use_aura) { | 26 if (use_aura) { |
27 sources -= [ "context_factory.h" ] | 27 sources -= [ "context_factory.h" ] |
28 } | 28 } |
29 | 29 |
30 configs += [ "//content:content_implementation" ] | 30 configs += [ "//content:content_implementation" ] |
31 | 31 |
32 deps = [ | 32 deps = [ |
33 "//content/browser", | 33 "//content/browser", |
34 "//skia", | 34 "//skia", |
35 ] | 35 ] |
| 36 |
| 37 # We expose skia headers in the public API. |
| 38 forward_dependent_configs_from = [ "//skia" ] |
36 } | 39 } |
OLD | NEW |