| OLD | NEW |
| 1 # Description: | 1 # Description: |
| 2 # Skia graphics library. | 2 # Skia graphics library. |
| 3 # | 3 # |
| 4 # Definitions for Google BUILD file. | 4 # Definitions for Google BUILD file. |
| 5 | 5 |
| 6 exports_files(["BUILD.public"]) | 6 exports_files(["BUILD.public"]) |
| 7 | 7 |
| 8 # Platform-independent SRCS | 8 # Platform-independent SRCS |
| 9 SRCS = glob( | 9 SRCS = glob( |
| 10 [ | 10 [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "src/gpu/gl/nacl/*", # Conflicts with gpu/gl/glx. | 47 "src/gpu/gl/nacl/*", # Conflicts with gpu/gl/glx. |
| 48 "src/gpu/gl/GrGLDefaultInterface_none.cpp", # Conflicts with src/gpu/gl
/GrGLDefaultInterface_native.cpp | 48 "src/gpu/gl/GrGLDefaultInterface_none.cpp", # Conflicts with src/gpu/gl
/GrGLDefaultInterface_native.cpp |
| 49 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", # Conflicts with src/g
pu/gl/glx/GrGLCreateNativeInterface_glx.cpp | 49 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", # Conflicts with src/g
pu/gl/glx/GrGLCreateNativeInterface_glx.cpp |
| 50 | 50 |
| 51 # Exclude files that don't compile with the current DEFINES. | 51 # Exclude files that don't compile with the current DEFINES. |
| 52 "src/gpu/gl/angle/*", # Requires SK_ANGLE define. | 52 "src/gpu/gl/angle/*", # Requires SK_ANGLE define. |
| 53 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE' | 53 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE' |
| 54 "src/gpu/gl/mesa/*", # Requires SK_MESA define. | 54 "src/gpu/gl/mesa/*", # Requires SK_MESA define. |
| 55 "src/svg/parser/*", # Missing SkSVG.h. | 55 "src/svg/parser/*", # Missing SkSVG.h. |
| 56 | 56 |
| 57 # Dependency on files outside src. | |
| 58 "src/svg/skp2svg.cpp", # Depends on tools/LazyDecodeBitmap.h. | |
| 59 | |
| 60 # Not used. | 57 # Not used. |
| 61 "src/animator/**/*", | 58 "src/animator/**/*", |
| 62 "src/views/**/*", | 59 "src/views/**/*", |
| 63 "src/xml/SkBML_Verbs.h", | 60 "src/xml/SkBML_Verbs.h", |
| 64 "src/xml/SkBML_XMLParser.cpp", | 61 "src/xml/SkBML_XMLParser.cpp", |
| 65 "src/xml/SkXMLPullParser.cpp", | 62 "src/xml/SkXMLPullParser.cpp", |
| 66 ], | 63 ], |
| 67 ) | 64 ) |
| 68 | 65 |
| 69 # Platform-dependent SRCS for google3-default platform. | 66 # Platform-dependent SRCS for google3-default platform. |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 "--images %s/resources" % BASE_DIR, | 278 "--images %s/resources" % BASE_DIR, |
| 282 ], | 279 ], |
| 283 copts = COPTS, | 280 copts = COPTS, |
| 284 data = glob(["resources/*"]), | 281 data = glob(["resources/*"]), |
| 285 defines = DEFINES, | 282 defines = DEFINES, |
| 286 includes = DM_INCLUDES, | 283 includes = DM_INCLUDES, |
| 287 deps = DM_EXTERNAL_DEPS + [ | 284 deps = DM_EXTERNAL_DEPS + [ |
| 288 ":skia", | 285 ":skia", |
| 289 ], | 286 ], |
| 290 ) | 287 ) |
| OLD | NEW |