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

Side by Side Diff: skia/BUILD.gn

Issue 2841633002: Add SK_IGNORE_GASP_VERSION_CHECK to Skia build. (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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "//third_party/skia/src/utils", 103 "//third_party/skia/src/utils",
104 "//third_party/skia/src/lazy", 104 "//third_party/skia/src/lazy",
105 ] 105 ]
106 if (is_mac || is_ios) { 106 if (is_mac || is_ios) {
107 include_dirs += [ "//third_party/skia/include/utils/mac" ] 107 include_dirs += [ "//third_party/skia/include/utils/mac" ]
108 } 108 }
109 if (is_mac) { 109 if (is_mac) {
110 include_dirs += [ "//third_party/skia/include/utils/ios" ] 110 include_dirs += [ "//third_party/skia/include/utils/ios" ]
111 } 111 }
112 112
113 defines = [] 113 defines = [ "SK_IGNORE_GASP_VERSION_CHECK" ]
114 114
115 if (is_component_build) { 115 if (is_component_build) {
116 defines += [ "SKIA_IMPLEMENTATION=1" ] 116 defines += [ "SKIA_IMPLEMENTATION=1" ]
117 } 117 }
118 118
119 if (current_cpu == "arm") { 119 if (current_cpu == "arm") {
120 if (arm_use_neon) { 120 if (arm_use_neon) {
121 defines += [ "SK_ARM_HAS_NEON" ] 121 defines += [ "SK_ARM_HAS_NEON" ]
122 } else if (arm_optionally_use_neon) { 122 } else if (arm_optionally_use_neon) {
123 defines += [ "SK_ARM_HAS_OPTIONAL_NEON" ] 123 defines += [ "SK_ARM_HAS_OPTIONAL_NEON" ]
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 711
712 deps = [ 712 deps = [
713 ":skia", 713 ":skia",
714 "//base", 714 "//base",
715 "//base/test:test_support", 715 "//base/test:test_support",
716 "//build/config/sanitizers:deps", 716 "//build/config/sanitizers:deps",
717 "//build/win:default_exe_manifest", 717 "//build/win:default_exe_manifest",
718 ] 718 ]
719 } 719 }
720 } 720 }
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