Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(589)

Side by Side Diff: skia/BUILD.gn

Issue 1647953006: Add include/client/android to skia .gn & .gypi files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | skia/skia_library.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//testing/test.gni") 7 import("//testing/test.gni")
8 if (current_cpu == "arm") { 8 if (current_cpu == "arm") {
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 } 10 }
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 } 175 }
176 } 176 }
177 177
178 # Internal-facing config for Skia library code. 178 # Internal-facing config for Skia library code.
179 config("skia_library_config") { 179 config("skia_library_config") {
180 # These include directories are only included for Skia code and are not 180 # These include directories are only included for Skia code and are not
181 # exported to dependents. It's not clear if this is on purpose, but this 181 # exported to dependents. It's not clear if this is on purpose, but this
182 # matches the GYP build. 182 # matches the GYP build.
183 include_dirs = [ 183 include_dirs = [
184 "//third_party/skia/include/private", 184 "//third_party/skia/include/private",
185 "//third_party/skia/include/client/android",
185 "//third_party/skia/src/core", 186 "//third_party/skia/src/core",
186 "//third_party/skia/src/image", 187 "//third_party/skia/src/image",
187 "//third_party/skia/src/opts", 188 "//third_party/skia/src/opts",
188 "//third_party/skia/src/pdf", 189 "//third_party/skia/src/pdf",
189 "//third_party/skia/src/ports", 190 "//third_party/skia/src/ports",
190 "//third_party/skia/src/sfnt", 191 "//third_party/skia/src/sfnt",
191 "//third_party/skia/src/utils", 192 "//third_party/skia/src/utils",
192 "//third_party/skia/src/lazy", 193 "//third_party/skia/src/lazy",
193 ] 194 ]
194 if (is_mac || is_ios) { 195 if (is_mac || is_ios) {
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 ] 720 ]
720 721
721 deps = [ 722 deps = [
722 ":skia", 723 ":skia",
723 "//base", 724 "//base",
724 "//base/test:test_support", 725 "//base/test:test_support",
725 "//build/config/sanitizers:deps", 726 "//build/config/sanitizers:deps",
726 ] 727 ]
727 } 728 }
728 } 729 }
OLDNEW
« no previous file with comments | « no previous file | skia/skia_library.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698