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

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

Issue 2692233005: Fix hyphenated words not to overflow on Android (Closed)
Patch Set: Created 3 years, 10 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/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 "fonts/linux/FontRenderStyle.h", 1533 "fonts/linux/FontRenderStyle.h",
1534 ] 1534 ]
1535 set_sources_assignment_filter(sources_assignment_filter) 1535 set_sources_assignment_filter(sources_assignment_filter)
1536 } else { 1536 } else {
1537 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ] 1537 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ]
1538 } 1538 }
1539 1539
1540 if (use_minikin_hyphenation) { 1540 if (use_minikin_hyphenation) {
1541 sources += [ 1541 sources += [
1542 "text/hyphenation/HyphenationMinikin.cpp", 1542 "text/hyphenation/HyphenationMinikin.cpp",
1543 "text/hyphenation/HyphenationMinikin.h",
1543 "text/hyphenation/HyphenatorAOSP.cpp", 1544 "text/hyphenation/HyphenatorAOSP.cpp",
1544 "text/hyphenation/HyphenatorAOSP.h", 1545 "text/hyphenation/HyphenatorAOSP.h",
1545 ] 1546 ]
1546 } 1547 }
1547 1548
1548 if (!use_default_render_theme) { 1549 if (!use_default_render_theme) {
1549 sources -= [ 1550 sources -= [
1550 "scroll/ScrollbarThemeAura.cpp", 1551 "scroll/ScrollbarThemeAura.cpp",
1551 "scroll/ScrollbarThemeAura.h", 1552 "scroll/ScrollbarThemeAura.h",
1552 ] 1553 ]
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 "//third_party/WebKit/Source:config", 2115 "//third_party/WebKit/Source:config",
2115 "//third_party/WebKit/Source:inside_blink", 2116 "//third_party/WebKit/Source:inside_blink",
2116 ] 2117 ]
2117 2118
2118 deps = [ 2119 deps = [
2119 ":test_support", 2120 ":test_support",
2120 "//testing/gmock", 2121 "//testing/gmock",
2121 "//testing/gtest", 2122 "//testing/gtest",
2122 ] 2123 ]
2123 } 2124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698