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

Side by Side Diff: skia/BUILD.gn

Issue 2843823003: Update skia BUILD.gn to add include for vulkan headers (Closed)
Patch Set: Created 3 years, 8 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 | no next file » | 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("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/skia/gn/shared_sources.gni") 10 import("//third_party/skia/gn/shared_sources.gni")
(...skipping 21 matching lines...) Expand all
32 "//third_party/skia/include/config", 32 "//third_party/skia/include/config",
33 "//third_party/skia/include/core", 33 "//third_party/skia/include/core",
34 "//third_party/skia/include/effects", 34 "//third_party/skia/include/effects",
35 "//third_party/skia/include/images", 35 "//third_party/skia/include/images",
36 "//third_party/skia/include/lazy", 36 "//third_party/skia/include/lazy",
37 "//third_party/skia/include/pathops", 37 "//third_party/skia/include/pathops",
38 "//third_party/skia/include/pdf", 38 "//third_party/skia/include/pdf",
39 "//third_party/skia/include/pipe", 39 "//third_party/skia/include/pipe",
40 "//third_party/skia/include/ports", 40 "//third_party/skia/include/ports",
41 "//third_party/skia/include/utils", 41 "//third_party/skia/include/utils",
42 "//third_party/skia/third_party/vulkan",
42 ] 43 ]
43 44
44 defines = skia_for_chromium_defines 45 defines = skia_for_chromium_defines
45 46
46 if (is_win) { 47 if (is_win) {
47 defines += [ "SK_FREETYPE_MINIMUM_RUNTIME_VERSION=(((FREETYPE_MAJOR) * 0x010 00000) | ((FREETYPE_MINOR) * 0x00010000) | ((FREETYPE_PATCH) * 0x00000100))" ] 48 defines += [ "SK_FREETYPE_MINIMUM_RUNTIME_VERSION=(((FREETYPE_MAJOR) * 0x010 00000) | ((FREETYPE_MINOR) * 0x00010000) | ((FREETYPE_PATCH) * 0x00000100))" ]
48 } 49 }
49 50
50 if (is_component_build) { 51 if (is_component_build) {
51 defines += [ 52 defines += [
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 709
709 deps = [ 710 deps = [
710 ":skia", 711 ":skia",
711 "//base", 712 "//base",
712 "//base/test:test_support", 713 "//base/test:test_support",
713 "//build/config/sanitizers:deps", 714 "//build/config/sanitizers:deps",
714 "//build/win:default_exe_manifest", 715 "//build/win:default_exe_manifest",
715 ] 716 ]
716 } 717 }
717 } 718 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698