| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 "renderer_host/input/input_router_impl.cc", | 1030 "renderer_host/input/input_router_impl.cc", |
| 1031 "renderer_host/input/input_router_impl.h", | 1031 "renderer_host/input/input_router_impl.h", |
| 1032 "renderer_host/input/legacy_touch_event_queue.cc", | 1032 "renderer_host/input/legacy_touch_event_queue.cc", |
| 1033 "renderer_host/input/legacy_touch_event_queue.h", | 1033 "renderer_host/input/legacy_touch_event_queue.h", |
| 1034 "renderer_host/input/motion_event_web.cc", | 1034 "renderer_host/input/motion_event_web.cc", |
| 1035 "renderer_host/input/motion_event_web.h", | 1035 "renderer_host/input/motion_event_web.h", |
| 1036 "renderer_host/input/mouse_wheel_event_queue.cc", | 1036 "renderer_host/input/mouse_wheel_event_queue.cc", |
| 1037 "renderer_host/input/mouse_wheel_event_queue.h", | 1037 "renderer_host/input/mouse_wheel_event_queue.h", |
| 1038 "renderer_host/input/mouse_wheel_rails_filter_mac.cc", | 1038 "renderer_host/input/mouse_wheel_rails_filter_mac.cc", |
| 1039 "renderer_host/input/mouse_wheel_rails_filter_mac.h", | 1039 "renderer_host/input/mouse_wheel_rails_filter_mac.h", |
| 1040 "renderer_host/input/passthrough_touch_event_queue.cc", |
| 1041 "renderer_host/input/passthrough_touch_event_queue.h", |
| 1040 "renderer_host/input/render_widget_host_latency_tracker.cc", | 1042 "renderer_host/input/render_widget_host_latency_tracker.cc", |
| 1041 "renderer_host/input/render_widget_host_latency_tracker.h", | 1043 "renderer_host/input/render_widget_host_latency_tracker.h", |
| 1042 "renderer_host/input/stylus_text_selector.cc", | 1044 "renderer_host/input/stylus_text_selector.cc", |
| 1043 "renderer_host/input/stylus_text_selector.h", | 1045 "renderer_host/input/stylus_text_selector.h", |
| 1044 "renderer_host/input/synthetic_gesture.cc", | 1046 "renderer_host/input/synthetic_gesture.cc", |
| 1045 "renderer_host/input/synthetic_gesture.h", | 1047 "renderer_host/input/synthetic_gesture.h", |
| 1046 "renderer_host/input/synthetic_gesture_controller.cc", | 1048 "renderer_host/input/synthetic_gesture_controller.cc", |
| 1047 "renderer_host/input/synthetic_gesture_controller.h", | 1049 "renderer_host/input/synthetic_gesture_controller.h", |
| 1048 "renderer_host/input/synthetic_gesture_target.h", | 1050 "renderer_host/input/synthetic_gesture_target.h", |
| 1049 "renderer_host/input/synthetic_gesture_target_aura.cc", | 1051 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| (...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2015 if (!is_component_build) { | 2017 if (!is_component_build) { |
| 2016 public_deps = [ | 2018 public_deps = [ |
| 2017 ":browser", | 2019 ":browser", |
| 2018 ] | 2020 ] |
| 2019 } else { | 2021 } else { |
| 2020 public_deps = [ | 2022 public_deps = [ |
| 2021 "//third_party/leveldatabase", | 2023 "//third_party/leveldatabase", |
| 2022 ] | 2024 ] |
| 2023 } | 2025 } |
| 2024 } | 2026 } |
| OLD | NEW |