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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2149803004: Add Minikin Hyphenation engine for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename alias to fallback Created 4 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
9 import("//third_party/WebKit/Source/config.gni") 9 import("//third_party/WebKit/Source/config.gni")
10 import("//third_party/WebKit/Source/platform/platform.gni") 10 import("//third_party/WebKit/Source/platform/platform.gni")
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 "fonts/linux/FontPlatformDataLinux.cpp", 432 "fonts/linux/FontPlatformDataLinux.cpp",
433 "fonts/linux/FontRenderStyle.cpp", 433 "fonts/linux/FontRenderStyle.cpp",
434 "fonts/linux/FontRenderStyle.h", 434 "fonts/linux/FontRenderStyle.h",
435 ] 435 ]
436 set_sources_assignment_filter(sources_assignment_filter) 436 set_sources_assignment_filter(sources_assignment_filter)
437 } else { 437 } else {
438 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ] 438 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ]
439 } 439 }
440 440
441 if (use_minikin_hyphenation) { 441 if (use_minikin_hyphenation) {
442 sources += [ "text/hyphenation/HyphenationMinikin.cpp" ] 442 sources += [
443 "text/hyphenation/HyphenationMinikin.cpp",
444 "text/hyphenation/HyphenatorAOSP.cpp",
445 "text/hyphenation/HyphenatorAOSP.h",
446 ]
443 } 447 }
444 448
445 if (!use_default_render_theme) { 449 if (!use_default_render_theme) {
446 sources -= [ 450 sources -= [
447 "scroll/ScrollbarThemeAura.cpp", 451 "scroll/ScrollbarThemeAura.cpp",
448 "scroll/ScrollbarThemeAura.h", 452 "scroll/ScrollbarThemeAura.h",
449 ] 453 ]
450 } 454 }
451 455
452 if (current_cpu == "arm") { 456 if (current_cpu == "arm") {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 } 634 }
631 635
632 if (current_cpu == "x86" || current_cpu == "x64") { 636 if (current_cpu == "x86" || current_cpu == "x64") {
633 source_set("blink_x86_sse") { 637 source_set("blink_x86_sse") {
634 sources = blink_platform_sse_files 638 sources = blink_platform_sse_files
635 deps = [ 639 deps = [
636 ":blink_common", 640 ":blink_common",
637 ] 641 ]
638 } 642 }
639 } 643 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698