OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 # This gypi file contains the Skia library. | 6 # This gypi file contains the Skia library. |
7 # In component mode (shared_lib) it is folded into a single shared library with | 7 # In component mode (shared_lib) it is folded into a single shared library with |
8 # the Chrome-specific enhancements but in all other cases it is a separate lib. | 8 # the Chrome-specific enhancements but in all other cases it is a separate lib. |
9 | 9 |
10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | 10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 | 351 |
352 '../third_party/skia/src/utils/win/SkDWrite.h', | 352 '../third_party/skia/src/utils/win/SkDWrite.h', |
353 '../third_party/skia/src/utils/win/SkDWrite.cpp', | 353 '../third_party/skia/src/utils/win/SkDWrite.cpp', |
354 '../third_party/skia/src/utils/win/SkDWriteFontFileStream.cpp', | 354 '../third_party/skia/src/utils/win/SkDWriteFontFileStream.cpp', |
355 '../third_party/skia/src/utils/win/SkDWriteFontFileStream.h', | 355 '../third_party/skia/src/utils/win/SkDWriteFontFileStream.h', |
356 '../third_party/skia/src/utils/win/SkDWriteGeometrySink.cpp', | 356 '../third_party/skia/src/utils/win/SkDWriteGeometrySink.cpp', |
357 '../third_party/skia/src/utils/win/SkDWriteGeometrySink.h', | 357 '../third_party/skia/src/utils/win/SkDWriteGeometrySink.h', |
358 '../third_party/skia/src/utils/win/SkHRESULT.cpp', | 358 '../third_party/skia/src/utils/win/SkHRESULT.cpp', |
359 ], | 359 ], |
360 }], | 360 }], |
361 # TODO(scottmg): http://crbug.com/177306 | |
362 ['clang==1', { | |
363 'xcode_settings': { | |
364 'WARNING_CFLAGS!': [ | |
365 # Don't warn about string->bool used in asserts. | |
366 '-Wstring-conversion', | |
367 ], | |
368 }, | |
369 'cflags!': [ | |
370 '-Wstring-conversion', | |
371 ], | |
372 }], | |
373 ], | 361 ], |
374 'target_conditions': [ | 362 'target_conditions': [ |
375 # Pull in specific Mac files for iOS (which have been filtered out | 363 # Pull in specific Mac files for iOS (which have been filtered out |
376 # by file name rules). | 364 # by file name rules). |
377 [ 'OS == "ios"', { | 365 [ 'OS == "ios"', { |
378 'sources/': [ | 366 'sources/': [ |
379 ['include', 'SkFontHost_mac\\.cpp$',], | 367 ['include', 'SkFontHost_mac\\.cpp$',], |
380 ['include', 'SkStream_mac\\.cpp$',], | 368 ['include', 'SkStream_mac\\.cpp$',], |
381 ['include', 'SkCreateCGImageRef\\.cpp$',], | 369 ['include', 'SkCreateCGImageRef\\.cpp$',], |
382 ], | 370 ], |
(...skipping 10 matching lines...) Expand all Loading... |
393 '../third_party/skia/include/pdf', | 381 '../third_party/skia/include/pdf', |
394 '../third_party/skia/include/gpu', | 382 '../third_party/skia/include/gpu', |
395 '../third_party/skia/include/lazy', | 383 '../third_party/skia/include/lazy', |
396 '../third_party/skia/include/pathops', | 384 '../third_party/skia/include/pathops', |
397 '../third_party/skia/include/pipe', | 385 '../third_party/skia/include/pipe', |
398 '../third_party/skia/include/ports', | 386 '../third_party/skia/include/ports', |
399 '../third_party/skia/include/utils', | 387 '../third_party/skia/include/utils', |
400 ], | 388 ], |
401 }, | 389 }, |
402 } | 390 } |
OLD | NEW |