Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Side by Side Diff: skia/BUILD.gn

Issue 378523003: Roll Skia from 82cb86f6133 to 5f7f9d04dc3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: roll Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « DEPS ('k') | skia/skia_library_opts.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « DEPS ('k') | skia/skia_library_opts.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698