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

Side by Side Diff: public.bzl

Issue 2185393003: added initial GLSL support to skslc (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed gn build Created 4 years, 4 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 | « gyp/sksl.gypi ('k') | src/sksl/SkSLCodeGenerator.h » ('j') | 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 "tools/test_font_index.inc", 428 "tools/test_font_index.inc",
429 "tools/timer/*.cpp", 429 "tools/timer/*.cpp",
430 "tools/timer/*.h", 430 "tools/timer/*.h",
431 ], 431 ],
432 exclude = [ 432 exclude = [
433 "dm/DMSrcSinkAndroid.cpp", # Android-only. 433 "dm/DMSrcSinkAndroid.cpp", # Android-only.
434 "tests/FontMgrAndroidParserTest.cpp", # Android-only. 434 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
435 "tests/PathOpsSkpClipTest.cpp", # Alternate main. 435 "tests/PathOpsSkpClipTest.cpp", # Alternate main.
436 "tests/skia_test.cpp", # Old main. 436 "tests/skia_test.cpp", # Old main.
437 "tests/SkpSkGrTest.cpp", # Alternate main. 437 "tests/SkpSkGrTest.cpp", # Alternate main.
438 "tests/SkSLErrorTest.cpp", # Excluded along with Vulkan. 438 "tests/SkSL*.cpp", # Excluded along with Vulkan.
439 "tests/SVGDeviceTest.cpp", 439 "tests/SVGDeviceTest.cpp",
440 "tools/gpu/gl/angle/*", 440 "tools/gpu/gl/angle/*",
441 "tools/gpu/gl/command_buffer/*", 441 "tools/gpu/gl/command_buffer/*",
442 "tools/gpu/gl/egl/*", 442 "tools/gpu/gl/egl/*",
443 "tools/gpu/gl/glx/*", 443 "tools/gpu/gl/glx/*",
444 "tools/gpu/gl/iOS/*", 444 "tools/gpu/gl/iOS/*",
445 "tools/gpu/gl/mac/*", 445 "tools/gpu/gl/mac/*",
446 "tools/gpu/gl/mesa/*", 446 "tools/gpu/gl/mesa/*",
447 "tools/gpu/gl/win/*", 447 "tools/gpu/gl/win/*",
448 "tools/timer/SysTimer_mach.cpp", 448 "tools/timer/SysTimer_mach.cpp",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 628
629 LINKOPTS_ANDROID = [ 629 LINKOPTS_ANDROID = [
630 "-lEGL", 630 "-lEGL",
631 ] 631 ]
632 632
633 LINKOPTS_IOS = [] 633 LINKOPTS_IOS = []
634 634
635 LINKOPTS_ALL = [ 635 LINKOPTS_ALL = [
636 "-ldl", 636 "-ldl",
637 ] 637 ]
OLDNEW
« no previous file with comments | « gyp/sksl.gypi ('k') | src/sksl/SkSLCodeGenerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698