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 13 matching lines...) Expand all Loading... |
24 "src/device/xps/*", # Windows-only. Move to ports? | 24 "src/device/xps/*", # Windows-only. Move to ports? |
25 "src/doc/*_XPS.cpp", # Windows-only. Move to ports? | 25 "src/doc/*_XPS.cpp", # Windows-only. Move to ports? |
26 "src/gpu/gl/android/*", | 26 "src/gpu/gl/android/*", |
27 "src/gpu/gl/iOS/*", | 27 "src/gpu/gl/iOS/*", |
28 "src/gpu/gl/mac/*", | 28 "src/gpu/gl/mac/*", |
29 "src/gpu/gl/win/*", | 29 "src/gpu/gl/win/*", |
30 "src/opts/**/*", | 30 "src/opts/**/*", |
31 "src/ports/**/*", | 31 "src/ports/**/*", |
32 "src/utils/android/**/*", | 32 "src/utils/android/**/*", |
33 "src/utils/mac/**/*", | 33 "src/utils/mac/**/*", |
34 "src/utils/SkThreadUtils_pthread_mach.cpp", # Mac-only. Move to ports? | |
35 "src/utils/SkThreadUtils_pthread_other.cpp", # Non-Mac-non-Linux. Move
to ports? | |
36 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports? | 34 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports? |
37 "src/utils/win/**/*", | 35 "src/utils/win/**/*", |
38 "src/views/sdl/*", | 36 "src/views/sdl/*", |
39 "src/views/win/*", | 37 "src/views/win/*", |
40 "src/views/unix/*", | 38 "src/views/unix/*", |
41 | 39 |
42 # Exclude multiple definitions. | 40 # Exclude multiple definitions. |
43 # TODO(mtklein): Move to opts? | 41 # TODO(mtklein): Move to opts? |
44 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp. | 42 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp. |
45 "src/fonts/*fontconfig*", | 43 "src/fonts/*fontconfig*", |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 "--images %s/resources" % BASE_DIR, | 279 "--images %s/resources" % BASE_DIR, |
282 ], | 280 ], |
283 copts = COPTS, | 281 copts = COPTS, |
284 data = glob(["resources/*"]), | 282 data = glob(["resources/*"]), |
285 defines = DEFINES, | 283 defines = DEFINES, |
286 includes = DM_INCLUDES, | 284 includes = DM_INCLUDES, |
287 deps = DM_EXTERNAL_DEPS + [ | 285 deps = DM_EXTERNAL_DEPS + [ |
288 ":skia", | 286 ":skia", |
289 ], | 287 ], |
290 ) | 288 ) |
OLD | NEW |