| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "tests/*.cpp", | 166 "tests/*.cpp", |
| 167 "tests/*.h", | 167 "tests/*.h", |
| 168 "tools/CrashHandler.cpp", | 168 "tools/CrashHandler.cpp", |
| 169 "tools/CrashHandler.h", | 169 "tools/CrashHandler.h", |
| 170 "tools/LazyDecodeBitmap.cpp", | 170 "tools/LazyDecodeBitmap.cpp", |
| 171 "tools/LazyDecodeBitmap.h", | 171 "tools/LazyDecodeBitmap.h", |
| 172 "tools/ProcStats.cpp", | 172 "tools/ProcStats.cpp", |
| 173 "tools/ProcStats.h", | 173 "tools/ProcStats.h", |
| 174 "tools/Resources.cpp", | 174 "tools/Resources.cpp", |
| 175 "tools/Resources.h", | 175 "tools/Resources.h", |
| 176 "tools/SkBitmapRegionCanvas.cpp", |
| 177 "tools/SkBitmapRegionCanvas.h", |
| 178 "tools/SkBitmapRegionCodec.cpp", |
| 179 "tools/SkBitmapRegionCodec.h", |
| 176 "tools/SkBitmapRegionDecoderInterface.cpp", | 180 "tools/SkBitmapRegionDecoderInterface.cpp", |
| 177 "tools/SkBitmapRegionDecoderInterface.h", | 181 "tools/SkBitmapRegionDecoderInterface.h", |
| 178 "tools/SkBitmapRegionSampler.cpp", | 182 "tools/SkBitmapRegionSampler.cpp", |
| 179 "tools/SkBitmapRegionSampler.h", | 183 "tools/SkBitmapRegionSampler.h", |
| 180 "tools/SkBitmapRegionCanvas.cpp", | |
| 181 "tools/SkBitmapRegionCanvas.h", | |
| 182 "tools/flags/*.cpp", | 184 "tools/flags/*.cpp", |
| 183 "tools/flags/*.h", | 185 "tools/flags/*.h", |
| 186 "tools/sk_tool_utils.cpp", |
| 187 "tools/sk_tool_utils.h", |
| 188 "tools/sk_tool_utils_font.cpp", |
| 184 "tools/timer/*.cpp", | 189 "tools/timer/*.cpp", |
| 185 "tools/timer/*.h", | 190 "tools/timer/*.h", |
| 186 "tools/sk_tool_utils.cpp", | |
| 187 "tools/sk_tool_utils_font.cpp", | |
| 188 "tools/sk_tool_utils.h", | |
| 189 ], | 191 ], |
| 190 exclude = [ | 192 exclude = [ |
| 191 "tests/skia_test.cpp", # Old main. | 193 "tests/skia_test.cpp", # Old main. |
| 192 "tests/SkpSkGrTest.cpp", # Alternate main. | 194 "tests/SkpSkGrTest.cpp", # Alternate main. |
| 193 "tests/PathOpsSkpClipTest.cpp", # Alternate main. | 195 "tests/PathOpsSkpClipTest.cpp", # Alternate main. |
| 194 "tests/FontMgrAndroidParserTest.cpp", # Android-only. | 196 "tests/FontMgrAndroidParserTest.cpp", # Android-only. |
| 195 "dm/DMSrcSinkAndroid.cpp", # Android-only. | 197 "dm/DMSrcSinkAndroid.cpp", # Android-only. |
| 196 "tools/timer/SysTimer_windows.cpp", | 198 "tools/timer/SysTimer_windows.cpp", |
| 197 "tools/timer/SysTimer_mach.cpp", | 199 "tools/timer/SysTimer_mach.cpp", |
| 198 ], | 200 ], |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 "--images %s/resources" % BASE_DIR, | 277 "--images %s/resources" % BASE_DIR, |
| 276 ], | 278 ], |
| 277 copts = COPTS, | 279 copts = COPTS, |
| 278 data = glob(["resources/**/*"]), | 280 data = glob(["resources/**/*"]), |
| 279 defines = DEFINES, | 281 defines = DEFINES, |
| 280 includes = DM_INCLUDES, | 282 includes = DM_INCLUDES, |
| 281 deps = DM_EXTERNAL_DEPS + [ | 283 deps = DM_EXTERNAL_DEPS + [ |
| 282 ":skia", | 284 ":skia", |
| 283 ], | 285 ], |
| 284 ) | 286 ) |
| OLD | NEW |