| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 if (current_cpu == "arm") { | 8 if (current_cpu == "arm") { |
| 9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 } | 10 } |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 "//third_party/skia/src/utils/SkFloatUtils.h", | 357 "//third_party/skia/src/utils/SkFloatUtils.h", |
| 358 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", | 358 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", |
| 359 "//third_party/skia/src/utils/SkInterpolator.cpp", | 359 "//third_party/skia/src/utils/SkInterpolator.cpp", |
| 360 "//third_party/skia/src/utils/SkLayer.cpp", | 360 "//third_party/skia/src/utils/SkLayer.cpp", |
| 361 "//third_party/skia/src/utils/SkMD5.cpp", | 361 "//third_party/skia/src/utils/SkMD5.cpp", |
| 362 "//third_party/skia/src/utils/SkMD5.h", | 362 "//third_party/skia/src/utils/SkMD5.h", |
| 363 "//third_party/skia/src/utils/SkMeshUtils.cpp", | 363 "//third_party/skia/src/utils/SkMeshUtils.cpp", |
| 364 "//third_party/skia/src/utils/SkNinePatch.cpp", | 364 "//third_party/skia/src/utils/SkNinePatch.cpp", |
| 365 "//third_party/skia/src/utils/SkOSFile.cpp", | 365 "//third_party/skia/src/utils/SkOSFile.cpp", |
| 366 "//third_party/skia/src/utils/SkParsePath.cpp", | 366 "//third_party/skia/src/utils/SkParsePath.cpp", |
| 367 "//third_party/skia/src/utils/SkPathUtils.cpp", | |
| 368 "//third_party/skia/src/utils/SkSHA1.cpp", | 367 "//third_party/skia/src/utils/SkSHA1.cpp", |
| 369 "//third_party/skia/src/utils/SkSHA1.h", | 368 "//third_party/skia/src/utils/SkSHA1.h", |
| 370 "//third_party/skia/src/utils/SkTFitsIn.h", | 369 "//third_party/skia/src/utils/SkTFitsIn.h", |
| 371 "//third_party/skia/src/utils/SkTLogic.h", | 370 "//third_party/skia/src/utils/SkTLogic.h", |
| 372 | 371 |
| 373 # We don't currently need to change thread affinity, so leave out this compl
exity for now. | 372 # We don't currently need to change thread affinity, so leave out this compl
exity for now. |
| 374 "//third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp", | 373 "//third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp", |
| 375 "//third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp", | 374 "//third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp", |
| 376 | 375 |
| 377 #testing | 376 #testing |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 sources = [ | 653 sources = [ |
| 655 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 654 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 656 ] | 655 ] |
| 657 | 656 |
| 658 deps = [ | 657 deps = [ |
| 659 ":skia", | 658 ":skia", |
| 660 "//base", | 659 "//base", |
| 661 ] | 660 ] |
| 662 } | 661 } |
| 663 } | 662 } |
| OLD | NEW |