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

Side by Side Diff: public.bzl

Issue 1723593002: Fix to bazel build file to exclude vulkan files (Closed) Base URL: https://skia.googlesource.com/skia.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 | 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 ################################################################################ 1 ################################################################################
2 # Skylark macros 2 # Skylark macros
3 ################################################################################ 3 ################################################################################
4 4
5 is_bazel = not hasattr(native, "genmpm") 5 is_bazel = not hasattr(native, "genmpm")
6 6
7 def portable_select(select_dict, bazel_condition, default_condition): 7 def portable_select(select_dict, bazel_condition, default_condition):
8 """Replaces select() with a Bazel-friendly wrapper. 8 """Replaces select() with a Bazel-friendly wrapper.
9 9
10 Args: 10 Args:
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 # Conflicting dependencies among Lua versions. See cl/107087297. 108 # Conflicting dependencies among Lua versions. See cl/107087297.
109 "src/utils/SkLua*", 109 "src/utils/SkLua*",
110 110
111 # Not used. 111 # Not used.
112 "src/animator/**/*", 112 "src/animator/**/*",
113 "src/views/**/*", 113 "src/views/**/*",
114 "src/xml/SkBML_Verbs.h", 114 "src/xml/SkBML_Verbs.h",
115 "src/xml/SkBML_XMLParser.cpp", 115 "src/xml/SkBML_XMLParser.cpp",
116 "src/xml/SkXMLPullParser.cpp", 116 "src/xml/SkXMLPullParser.cpp",
117
118 # Currently exclude all vulkan specific files
119 "src/gpu/vk/*",
117 ], 120 ],
118 ) 121 )
119 122
120 # Platform-dependent SRCS for google3-default platform. 123 # Platform-dependent SRCS for google3-default platform.
121 BASE_SRCS_UNIX = struct( 124 BASE_SRCS_UNIX = struct(
122 include = [ 125 include = [
123 "src/android/*", 126 "src/android/*",
124 "src/codec/*", 127 "src/codec/*",
125 "src/fonts/SkFontMgr_fontconfig.cpp", 128 "src/fonts/SkFontMgr_fontconfig.cpp",
126 "src/gpu/gl/GrGLDefaultInterface_none.cpp", 129 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 530
528 LINKOPTS_ANDROID = [ 531 LINKOPTS_ANDROID = [
529 "-lEGL", 532 "-lEGL",
530 ] 533 ]
531 534
532 LINKOPTS_IOS = [] 535 LINKOPTS_IOS = []
533 536
534 LINKOPTS_ALL = [ 537 LINKOPTS_ALL = [
535 "-ldl", 538 "-ldl",
536 ] 539 ]
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