| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 9 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/platform/platform.gni") | 10 import("//third_party/WebKit/Source/platform/platform.gni") |
| 10 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 11 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
| 11 | 12 |
| 12 # Most targets in this file are private actions so use that as the default. | 13 # Most targets in this file are private actions so use that as the default. |
| 13 visibility = [ ":*" ] | 14 visibility = [ ":*" ] |
| 14 | 15 |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 sources += [ | 430 sources += [ |
| 430 "fonts/linux/FontPlatformDataLinux.cpp", | 431 "fonts/linux/FontPlatformDataLinux.cpp", |
| 431 "fonts/linux/FontRenderStyle.cpp", | 432 "fonts/linux/FontRenderStyle.cpp", |
| 432 "fonts/linux/FontRenderStyle.h", | 433 "fonts/linux/FontRenderStyle.h", |
| 433 ] | 434 ] |
| 434 set_sources_assignment_filter(sources_assignment_filter) | 435 set_sources_assignment_filter(sources_assignment_filter) |
| 435 } else { | 436 } else { |
| 436 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ] | 437 sources -= [ "scroll/ScrollbarThemeAndroid.cpp" ] |
| 437 } | 438 } |
| 438 | 439 |
| 440 if (use_minikin_hyphenation) { |
| 441 sources += [ "text/minikin/HyphenationMinikin.cpp" ] |
| 442 } |
| 443 |
| 439 if (!use_default_render_theme) { | 444 if (!use_default_render_theme) { |
| 440 sources -= [ | 445 sources -= [ |
| 441 "scroll/ScrollbarThemeAura.cpp", | 446 "scroll/ScrollbarThemeAura.cpp", |
| 442 "scroll/ScrollbarThemeAura.h", | 447 "scroll/ScrollbarThemeAura.h", |
| 443 ] | 448 ] |
| 444 } | 449 } |
| 445 | 450 |
| 446 if (current_cpu == "arm") { | 451 if (current_cpu == "arm") { |
| 447 deps += [ ":blink_arm_neon" ] | 452 deps += [ ":blink_arm_neon" ] |
| 448 } | 453 } |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 } | 629 } |
| 625 | 630 |
| 626 if (current_cpu == "x86" || current_cpu == "x64") { | 631 if (current_cpu == "x86" || current_cpu == "x64") { |
| 627 source_set("blink_x86_sse") { | 632 source_set("blink_x86_sse") { |
| 628 sources = blink_platform_sse_files | 633 sources = blink_platform_sse_files |
| 629 deps = [ | 634 deps = [ |
| 630 ":blink_common", | 635 ":blink_common", |
| 631 ] | 636 ] |
| 632 } | 637 } |
| 633 } | 638 } |
| OLD | NEW |