| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import("gn/shared_sources.gni") | 6 import("gn/shared_sources.gni") |
| 7 | 7 |
| 8 if (!defined(is_skia_standalone)) { | 8 if (!defined(is_skia_standalone)) { |
| 9 is_skia_standalone = false | 9 is_skia_standalone = false |
| 10 } | 10 } |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 "src/ports/SkGlobalInitialization_default.cpp", | 534 "src/ports/SkGlobalInitialization_default.cpp", |
| 535 "src/ports/SkImageGenerator_skia.cpp", | 535 "src/ports/SkImageGenerator_skia.cpp", |
| 536 "src/ports/SkMemory_malloc.cpp", | 536 "src/ports/SkMemory_malloc.cpp", |
| 537 "src/ports/SkOSFile_stdio.cpp", | 537 "src/ports/SkOSFile_stdio.cpp", |
| 538 "src/sfnt/SkOTTable_name.cpp", | 538 "src/sfnt/SkOTTable_name.cpp", |
| 539 "src/sfnt/SkOTUtils.cpp", | 539 "src/sfnt/SkOTUtils.cpp", |
| 540 "src/svg/SkSVGCanvas.cpp", | 540 "src/svg/SkSVGCanvas.cpp", |
| 541 "src/svg/SkSVGDevice.cpp", | 541 "src/svg/SkSVGDevice.cpp", |
| 542 "src/utils/mac/SkStream_mac.cpp", | 542 "src/utils/mac/SkStream_mac.cpp", |
| 543 "third_party/etc1/etc1.cpp", | 543 "third_party/etc1/etc1.cpp", |
| 544 "third_party/gif/GIFImageReader.cpp", | 544 "third_party/gif/SkGifImageReader.cpp", |
| 545 "third_party/ktx/ktx.cpp", | 545 "third_party/ktx/ktx.cpp", |
| 546 ] | 546 ] |
| 547 | 547 |
| 548 libs = [] | 548 libs = [] |
| 549 | 549 |
| 550 if (is_win) { | 550 if (is_win) { |
| 551 sources += [ | 551 sources += [ |
| 552 "src/fonts/SkFontMgr_indirect.cpp", | 552 "src/fonts/SkFontMgr_indirect.cpp", |
| 553 "src/ports/SkDebug_win.cpp", | 553 "src/ports/SkDebug_win.cpp", |
| 554 "src/ports/SkFontHost_win.cpp", | 554 "src/ports/SkFontHost_win.cpp", |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1245 ] | 1245 ] |
| 1246 if (is_android) { | 1246 if (is_android) { |
| 1247 deps += [ "//third_party/native_app_glue" ] | 1247 deps += [ "//third_party/native_app_glue" ] |
| 1248 } else if (is_mac) { | 1248 } else if (is_mac) { |
| 1249 deps += [ "//third_party/libsdl" ] | 1249 deps += [ "//third_party/libsdl" ] |
| 1250 } | 1250 } |
| 1251 testonly = true | 1251 testonly = true |
| 1252 } | 1252 } |
| 1253 } | 1253 } |
| 1254 } | 1254 } |
| OLD | NEW |