| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 ] |
| OLD | NEW |