Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: BUILD.public

Issue 1408213005: Remove SkThread::setProcessorAffinity() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gAdds Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | cmake/CMakeLists.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 )
OLDNEW
« no previous file with comments | « no previous file | cmake/CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698