| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 | 356 |
| 357 # Remove unused util files include in utils.gypi | 357 # Remove unused util files include in utils.gypi |
| 358 sources -= [ | 358 sources -= [ |
| 359 "//third_party/skia/src/utils/SkBoundaryPatch.cpp", | 359 "//third_party/skia/src/utils/SkBoundaryPatch.cpp", |
| 360 "//third_party/skia/src/utils/SkCamera.cpp", | 360 "//third_party/skia/src/utils/SkCamera.cpp", |
| 361 "//third_party/skia/src/utils/SkDumpCanvas.cpp", | 361 "//third_party/skia/src/utils/SkDumpCanvas.cpp", |
| 362 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", | 362 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", |
| 363 "//third_party/skia/src/utils/SkInterpolator.cpp", | 363 "//third_party/skia/src/utils/SkInterpolator.cpp", |
| 364 "//third_party/skia/src/utils/SkLayer.cpp", | 364 "//third_party/skia/src/utils/SkLayer.cpp", |
| 365 "//third_party/skia/src/utils/SkMeshUtils.cpp", | 365 "//third_party/skia/src/utils/SkMeshUtils.cpp", |
| 366 "//third_party/skia/src/utils/SkNinePatch.cpp", | |
| 367 "//third_party/skia/src/utils/SkOSFile.cpp", | 366 "//third_party/skia/src/utils/SkOSFile.cpp", |
| 368 "//third_party/skia/src/utils/SkParsePath.cpp", | 367 "//third_party/skia/src/utils/SkParsePath.cpp", |
| 369 | 368 |
| 370 #testing | 369 #testing |
| 371 "//third_party/skia/src/fonts/SkGScalerContext.cpp", | 370 "//third_party/skia/src/fonts/SkGScalerContext.cpp", |
| 372 ] | 371 ] |
| 373 | 372 |
| 374 if (is_win) { | 373 if (is_win) { |
| 375 sources -= [ | 374 sources -= [ |
| 376 # Keeping _win.cpp | 375 # Keeping _win.cpp |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 | 759 |
| 761 deps = [ | 760 deps = [ |
| 762 ":skia", | 761 ":skia", |
| 763 "//base", | 762 "//base", |
| 764 "//base/test:test_support", | 763 "//base/test:test_support", |
| 765 "//build/config/sanitizers:deps", | 764 "//build/config/sanitizers:deps", |
| 766 "//build/win:default_exe_manifest", | 765 "//build/win:default_exe_manifest", |
| 767 ] | 766 ] |
| 768 } | 767 } |
| 769 } | 768 } |
| OLD | NEW |