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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 exclude = [ | 56 exclude = [ |
57 "src/pdf/SkPDFFont.cpp", # Wrapped by google/SkPDFFont_sfntly.cpp | 57 "src/pdf/SkPDFFont.cpp", # Wrapped by google/SkPDFFont_sfntly.cpp |
58 "src/gpu/gl/GrGLDefaultInterface_none.cpp", | 58 "src/gpu/gl/GrGLDefaultInterface_none.cpp", |
59 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", | 59 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", |
60 # TODO(mtklein): files below here probably want upstream fixes | 60 # TODO(mtklein): files below here probably want upstream fixes |
61 "src/utils/SkThreadUtils_pthread_mach.cpp", # Mac-only. Move to ports? | 61 "src/utils/SkThreadUtils_pthread_mach.cpp", # Mac-only. Move to ports? |
62 # Non-Mac-non-Linux. Move to ports? | 62 # Non-Mac-non-Linux. Move to ports? |
63 "src/utils/SkThreadUtils_pthread_other.cpp", | 63 "src/utils/SkThreadUtils_pthread_other.cpp", |
64 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports? | 64 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports? |
65 "src/doc/*_XPS.cpp", | 65 "src/doc/*_XPS.cpp", |
66 | |
67 # TODO(melanielc): These don't compile. Maybe remove them? | |
68 "src/pathops/SkConicLineIntersection.cpp", | |
69 "src/pathops/SkPathOpsPostSect.cpp", | |
70 ], | 66 ], |
71 ) | 67 ) |
72 | 68 |
73 HDRS = glob( | 69 HDRS = glob( |
74 [ | 70 [ |
75 "include/**/*.h", | 71 "include/**/*.h", |
76 ], | 72 ], |
77 ) | 73 ) |
78 | 74 |
79 # Includes needed by Skia implementation. Not public includes. | 75 # Includes needed by Skia implementation. Not public includes. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 # Chrome DEFINES. | 116 # Chrome DEFINES. |
121 "SK_USE_FLOATBITS", | 117 "SK_USE_FLOATBITS", |
122 "SK_USE_FREETYPE_EMBOLDEN", | 118 "SK_USE_FREETYPE_EMBOLDEN", |
123 # Turn on a few Google3-specific build fixes. | 119 # Turn on a few Google3-specific build fixes. |
124 "GOOGLE3", | 120 "GOOGLE3", |
125 "SK_BUILD_FOR_UNIX", | 121 "SK_BUILD_FOR_UNIX", |
126 "SK_SAMPLES_FOR_X", | 122 "SK_SAMPLES_FOR_X", |
127 ] | 123 ] |
128 | 124 |
129 LINKOPTS = ["-ldl"] | 125 LINKOPTS = ["-ldl"] |
OLD | NEW |