| 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 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 # Exclude multiple definitions. | 42 # Exclude multiple definitions. |
| 43 # TODO(mtklein): Move to opts? | 43 # TODO(mtklein): Move to opts? |
| 44 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp. | 44 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp. |
| 45 "src/fonts/*fontconfig*", | 45 "src/fonts/*fontconfig*", |
| 46 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", | 46 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", |
| 47 "src/gpu/gl/GrGLDefaultInterface_native.cpp", | 47 "src/gpu/gl/GrGLDefaultInterface_native.cpp", |
| 48 "src/gpu/gl/GrGLDefaultInterface_none.cpp", | 48 "src/gpu/gl/GrGLDefaultInterface_none.cpp", |
| 49 | 49 |
| 50 # Exclude files that don't compile with the current DEFINES. | 50 # Exclude files that don't compile with the current DEFINES. |
| 51 "src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch. |
| 51 "src/gpu/gl/angle/*", # Requires SK_ANGLE define. | 52 "src/gpu/gl/angle/*", # Requires SK_ANGLE define. |
| 52 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE' | 53 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE' |
| 53 "src/gpu/gl/mesa/*", # Requires SK_MESA define. | 54 "src/gpu/gl/mesa/*", # Requires SK_MESA define. |
| 54 "src/svg/parser/*", # Missing SkSVG.h. | 55 "src/svg/parser/*", # Missing SkSVG.h. |
| 55 | 56 |
| 56 # Not used. | 57 # Not used. |
| 57 "src/animator/**/*", | 58 "src/animator/**/*", |
| 58 "src/views/**/*", | 59 "src/views/**/*", |
| 59 "src/xml/SkBML_Verbs.h", | 60 "src/xml/SkBML_Verbs.h", |
| 60 "src/xml/SkBML_XMLParser.cpp", | 61 "src/xml/SkBML_XMLParser.cpp", |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 "--images %s/resources" % BASE_DIR, | 385 "--images %s/resources" % BASE_DIR, |
| 385 ], | 386 ], |
| 386 copts = COPTS, | 387 copts = COPTS, |
| 387 data = glob(["resources/**/*"]), | 388 data = glob(["resources/**/*"]), |
| 388 defines = DEFINES, | 389 defines = DEFINES, |
| 389 includes = DM_INCLUDES, | 390 includes = DM_INCLUDES, |
| 390 deps = DM_EXTERNAL_DEPS + [ | 391 deps = DM_EXTERNAL_DEPS + [ |
| 391 ":skia", | 392 ":skia", |
| 392 ], | 393 ], |
| 393 ) | 394 ) |
| OLD | NEW |