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

Side by Side Diff: public.bzl

Issue 1835363002: Remove GLFW from public.bzl. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 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 ################################################################################ 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ], 70 ],
71 exclude = [ 71 exclude = [
72 # Exclude platform-dependent files. 72 # Exclude platform-dependent files.
73 "src/android/*", 73 "src/android/*",
74 "src/codec/*", 74 "src/codec/*",
75 "src/device/xps/*", # Windows-only. Move to ports? 75 "src/device/xps/*", # Windows-only. Move to ports?
76 "src/doc/*_XPS.cpp", # Windows-only. Move to ports? 76 "src/doc/*_XPS.cpp", # Windows-only. Move to ports?
77 "src/fonts/SkFontMgr_fontconfig.cpp", 77 "src/fonts/SkFontMgr_fontconfig.cpp",
78 "src/gpu/gl/android/*", 78 "src/gpu/gl/android/*",
79 "src/gpu/gl/egl/*", 79 "src/gpu/gl/egl/*",
80 "src/gpu/gl/glfw/*",
80 "src/gpu/gl/glx/*", 81 "src/gpu/gl/glx/*",
81 "src/gpu/gl/iOS/*", 82 "src/gpu/gl/iOS/*",
82 "src/gpu/gl/mac/*", 83 "src/gpu/gl/mac/*",
83 "src/gpu/gl/win/*", 84 "src/gpu/gl/win/*",
84 "src/images/*", 85 "src/images/*",
85 "src/opts/**/*", 86 "src/opts/**/*",
86 "src/ports/**/*", 87 "src/ports/**/*",
87 "src/utils/android/**/*", 88 "src/utils/android/**/*",
88 "src/utils/mac/**/*", 89 "src/utils/mac/**/*",
89 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports? 90 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports?
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 537
537 LINKOPTS_ANDROID = [ 538 LINKOPTS_ANDROID = [
538 "-lEGL", 539 "-lEGL",
539 ] 540 ]
540 541
541 LINKOPTS_IOS = [] 542 LINKOPTS_IOS = []
542 543
543 LINKOPTS_ALL = [ 544 LINKOPTS_ALL = [
544 "-ldl", 545 "-ldl",
545 ] 546 ]
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