| OLD | NEW |
| 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 1519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1530 "fonts/linux/FontRenderStyle.h", | 1530 "fonts/linux/FontRenderStyle.h", |
| 1531 ] | 1531 ] |
| 1532 set_sources_assignment_filter(sources_assignment_filter) | 1532 set_sources_assignment_filter(sources_assignment_filter) |
| 1533 } else { | 1533 } else { |
| 1534 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ] | 1534 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ] |
| 1535 } | 1535 } |
| 1536 | 1536 |
| 1537 if (use_minikin_hyphenation) { | 1537 if (use_minikin_hyphenation) { |
| 1538 sources += [ | 1538 sources += [ |
| 1539 "text/hyphenation/HyphenationMinikin.cpp", | 1539 "text/hyphenation/HyphenationMinikin.cpp", |
| 1540 "text/hyphenation/HyphenationMinikin.h", |
| 1540 "text/hyphenation/HyphenatorAOSP.cpp", | 1541 "text/hyphenation/HyphenatorAOSP.cpp", |
| 1541 "text/hyphenation/HyphenatorAOSP.h", | 1542 "text/hyphenation/HyphenatorAOSP.h", |
| 1542 ] | 1543 ] |
| 1543 } | 1544 } |
| 1544 | 1545 |
| 1545 if (!use_default_render_theme) { | 1546 if (!use_default_render_theme) { |
| 1546 sources -= [ | 1547 sources -= [ |
| 1547 "scroll/ScrollbarThemeAura.cpp", | 1548 "scroll/ScrollbarThemeAura.cpp", |
| 1548 "scroll/ScrollbarThemeAura.h", | 1549 "scroll/ScrollbarThemeAura.h", |
| 1549 ] | 1550 ] |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2090 "//third_party/WebKit/Source:config", | 2091 "//third_party/WebKit/Source:config", |
| 2091 "//third_party/WebKit/Source:inside_blink", | 2092 "//third_party/WebKit/Source:inside_blink", |
| 2092 ] | 2093 ] |
| 2093 | 2094 |
| 2094 deps = [ | 2095 deps = [ |
| 2095 ":test_support", | 2096 ":test_support", |
| 2096 "//testing/gmock", | 2097 "//testing/gmock", |
| 2097 "//testing/gtest", | 2098 "//testing/gtest", |
| 2098 ] | 2099 ] |
| 2099 } | 2100 } |
| OLD | NEW |