Chromium Code Reviews| Index: third_party/WebKit/Source/platform/BUILD.gn |
| diff --git a/third_party/WebKit/Source/platform/BUILD.gn b/third_party/WebKit/Source/platform/BUILD.gn |
| index cd21dd728743177506edcafb965d592763bb7db3..800bd84ca11a4e76d8ad079696f2d210fda387c6 100644 |
| --- a/third_party/WebKit/Source/platform/BUILD.gn |
| +++ b/third_party/WebKit/Source/platform/BUILD.gn |
| @@ -1239,6 +1239,7 @@ component("platform") { |
| "scheduler/base/work_queue_sets.cc", |
| "scheduler/base/work_queue_sets.h", |
| "scheduler/child/compositor_worker_scheduler.cc", |
| + "scheduler/child/compositor_worker_scheduler.h", |
| "scheduler/child/idle_canceled_delayed_task_sweeper.cc", |
| "scheduler/child/idle_canceled_delayed_task_sweeper.h", |
| "scheduler/child/idle_helper.cc", |
| @@ -1255,9 +1256,11 @@ component("platform") { |
| "scheduler/child/web_task_runner_impl.h", |
| "scheduler/child/webthread_base.cc", |
| "scheduler/child/webthread_impl_for_worker_scheduler.cc", |
| + "scheduler/child/webthread_impl_for_worker_scheduler.h", |
| "scheduler/child/worker_global_scope_scheduler.cc", |
| "scheduler/child/worker_global_scope_scheduler.h", |
| "scheduler/child/worker_scheduler.cc", |
| + "scheduler/child/worker_scheduler.h", |
| "scheduler/child/worker_scheduler_impl.cc", |
| "scheduler/child/worker_scheduler_impl.h", |
| "scheduler/renderer/auto_advancing_virtual_time_domain.cc", |
| @@ -1291,6 +1294,7 @@ component("platform") { |
| "scheduler/renderer/webthread_impl_for_renderer_scheduler.cc", |
| "scheduler/renderer/webthread_impl_for_renderer_scheduler.h", |
| "scheduler/utility/webthread_impl_for_utility_thread.cc", |
| + "scheduler/utility/webthread_impl_for_utility_thread.h", |
| "scroll/MainThreadScrollingReason.h", |
| "scroll/ProgrammaticScrollAnimator.cpp", |
| "scroll/ProgrammaticScrollAnimator.h", |
| @@ -1439,11 +1443,6 @@ component("platform") { |
| "weborigin/URLSecurityOriginMap.h", |
| ] |
| - if (is_android) { |
| - set_sources_assignment_filter([]) |
| - sources += [ "exported/linux/WebFontRenderStyle.cpp" ] |
| - } |
| - |
| sources -= blink_platform_neon_files |
| sources -= blink_platform_msa_files |
| sources -= blink_platform_sse_files |
| @@ -1565,6 +1564,8 @@ component("platform") { |
| # Add in some Linux files also shared with Android. |
| set_sources_assignment_filter([]) |
| sources += [ |
| + "../../public/platform/linux/WebFontRenderStyle.h", |
|
Nico
2017/04/27 14:18:09
It's weird to me that source/platform would includ
wychen
2017/04/27 23:06:29
Moved to WebKit/public. Thanks for catching this!
|
| + "exported/linux/WebFontRenderStyle.cpp", |
| "fonts/linux/FontPlatformDataLinux.cpp", |
| "fonts/linux/FontRenderStyle.cpp", |
| "fonts/linux/FontRenderStyle.h", |