| 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 if (cpu_arch == "arm") { | 7 if (cpu_arch == "arm") { |
| 8 import("//build/config/arm.gni") | 8 import("//build/config/arm.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 "//third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp", | 534 "//third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp", |
| 535 "//third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp", | 535 "//third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp", |
| 536 "//third_party/skia/src/opts/SkBlurImage_opts_SSE2.cpp", | 536 "//third_party/skia/src/opts/SkBlurImage_opts_SSE2.cpp", |
| 537 "//third_party/skia/src/opts/SkMorphology_opts_SSE2.cpp", | 537 "//third_party/skia/src/opts/SkMorphology_opts_SSE2.cpp", |
| 538 "//third_party/skia/src/opts/SkUtils_opts_SSE2.cpp", | 538 "//third_party/skia/src/opts/SkUtils_opts_SSE2.cpp", |
| 539 "//third_party/skia/src/opts/SkXfermode_opts_SSE2.cpp", | 539 "//third_party/skia/src/opts/SkXfermode_opts_SSE2.cpp", |
| 540 | 540 |
| 541 # SSSE 3 | 541 # SSSE 3 |
| 542 "//third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp", | 542 "//third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp", |
| 543 | 543 |
| 544 # SSE 4 |
| 545 "//third_party/skia/src/opts/SkBlurImage_opts_SSE4.cpp", |
| 546 |
| 544 # Chrome-specific. | 547 # Chrome-specific. |
| 545 "ext/convolver_SSE2.cc", | 548 "ext/convolver_SSE2.cc", |
| 546 | 549 |
| 547 # These are header files used by this target from the skia one above. | 550 # These are header files used by this target from the skia one above. |
| 548 "ext/convolver.h", | 551 "ext/convolver.h", |
| 549 "//third_party/skia/include/core/SkTypes.h", | 552 "//third_party/skia/include/core/SkTypes.h", |
| 550 ] | 553 ] |
| 551 | 554 |
| 552 # SSE 4 | 555 # SSE 4 |
| 553 if (cpu_arch == "x86") { | 556 if (cpu_arch == "x86") { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 ":skia_config", | 659 ":skia_config", |
| 657 "//build/config/compiler:no_chromium_code" | 660 "//build/config/compiler:no_chromium_code" |
| 658 ] | 661 ] |
| 659 | 662 |
| 660 deps = [ | 663 deps = [ |
| 661 "//base", | 664 "//base", |
| 662 ] | 665 ] |
| 663 | 666 |
| 664 visibility = ":skia" | 667 visibility = ":skia" |
| 665 } | 668 } |
| OLD | NEW |