OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 if (cpu_arch == "arm") { | 7 if (cpu_arch == "arm") { |
8 import("//build/config/arm.gni") | 8 import("//build/config/arm.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "--replace=<(skia_include_path)=//third_party/skia/include", | 72 "--replace=<(skia_include_path)=//third_party/skia/include", |
73 "--replace=<(skia_src_path)=//third_party/skia/src" ], | 73 "--replace=<(skia_src_path)=//third_party/skia/src" ], |
74 "scope", | 74 "scope", |
75 [ "skia_gn_files.gypi" ]) | 75 [ "skia_gn_files.gypi" ]) |
76 | 76 |
77 # External-facing config for dependent code. | 77 # External-facing config for dependent code. |
78 config("skia_config") { | 78 config("skia_config") { |
79 include_dirs = [ | 79 include_dirs = [ |
80 "config", | 80 "config", |
81 "ext", | 81 "ext", |
| 82 "//third_party/skia/include/c", |
82 "//third_party/skia/include/config", | 83 "//third_party/skia/include/config", |
83 "//third_party/skia/include/core", | 84 "//third_party/skia/include/core", |
84 "//third_party/skia/include/effects", | 85 "//third_party/skia/include/effects", |
85 "//third_party/skia/include/images", | 86 "//third_party/skia/include/images", |
86 "//third_party/skia/include/lazy", | 87 "//third_party/skia/include/lazy", |
87 "//third_party/skia/include/pathops", | 88 "//third_party/skia/include/pathops", |
88 "//third_party/skia/include/pdf", | 89 "//third_party/skia/include/pdf", |
89 "//third_party/skia/include/pipe", | 90 "//third_party/skia/include/pipe", |
90 "//third_party/skia/include/ports", | 91 "//third_party/skia/include/ports", |
91 "//third_party/skia/include/utils", | 92 "//third_party/skia/include/utils", |
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 ":skia_library_config", | 704 ":skia_library_config", |
704 "//build/config/compiler:no_chromium_code" | 705 "//build/config/compiler:no_chromium_code" |
705 ] | 706 ] |
706 | 707 |
707 deps = [ | 708 deps = [ |
708 "//base", | 709 "//base", |
709 ] | 710 ] |
710 | 711 |
711 visibility = [ ":skia" ] | 712 visibility = [ ":skia" ] |
712 } | 713 } |
OLD | NEW |