| 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 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 "renderer_host/input/timeout_monitor.cc", | 1084 "renderer_host/input/timeout_monitor.cc", |
| 1085 "renderer_host/input/timeout_monitor.h", | 1085 "renderer_host/input/timeout_monitor.h", |
| 1086 "renderer_host/input/touch_action_filter.cc", | 1086 "renderer_host/input/touch_action_filter.cc", |
| 1087 "renderer_host/input/touch_action_filter.h", | 1087 "renderer_host/input/touch_action_filter.h", |
| 1088 "renderer_host/input/touch_emulator.cc", | 1088 "renderer_host/input/touch_emulator.cc", |
| 1089 "renderer_host/input/touch_emulator.h", | 1089 "renderer_host/input/touch_emulator.h", |
| 1090 "renderer_host/input/touch_emulator_client.h", | 1090 "renderer_host/input/touch_emulator_client.h", |
| 1091 "renderer_host/input/touch_event_queue.h", | 1091 "renderer_host/input/touch_event_queue.h", |
| 1092 "renderer_host/input/touch_selection_controller_client_aura.cc", | 1092 "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 1093 "renderer_host/input/touch_selection_controller_client_aura.h", | 1093 "renderer_host/input/touch_selection_controller_client_aura.h", |
| 1094 "renderer_host/input/touch_timeout_handler.cc", |
| 1095 "renderer_host/input/touch_timeout_handler.h", |
| 1094 "renderer_host/input/touchpad_tap_suppression_controller.cc", | 1096 "renderer_host/input/touchpad_tap_suppression_controller.cc", |
| 1095 "renderer_host/input/touchpad_tap_suppression_controller.h", | 1097 "renderer_host/input/touchpad_tap_suppression_controller.h", |
| 1096 "renderer_host/input/touchscreen_tap_suppression_controller.cc", | 1098 "renderer_host/input/touchscreen_tap_suppression_controller.cc", |
| 1097 "renderer_host/input/touchscreen_tap_suppression_controller.h", | 1099 "renderer_host/input/touchscreen_tap_suppression_controller.h", |
| 1098 "renderer_host/input/web_input_event_builders_android.cc", | 1100 "renderer_host/input/web_input_event_builders_android.cc", |
| 1099 "renderer_host/input/web_input_event_builders_android.h", | 1101 "renderer_host/input/web_input_event_builders_android.h", |
| 1100 "renderer_host/input/web_input_event_builders_mac.h", | 1102 "renderer_host/input/web_input_event_builders_mac.h", |
| 1101 "renderer_host/input/web_input_event_builders_mac.mm", | 1103 "renderer_host/input/web_input_event_builders_mac.mm", |
| 1102 "renderer_host/legacy_render_widget_host_win.cc", | 1104 "renderer_host/legacy_render_widget_host_win.cc", |
| 1103 "renderer_host/legacy_render_widget_host_win.h", | 1105 "renderer_host/legacy_render_widget_host_win.h", |
| (...skipping 911 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 |