| 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 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 "renderer_host/frame_metadata_util.h", | 1026 "renderer_host/frame_metadata_util.h", |
| 1027 "renderer_host/input/gesture_event_queue.cc", | 1027 "renderer_host/input/gesture_event_queue.cc", |
| 1028 "renderer_host/input/gesture_event_queue.h", | 1028 "renderer_host/input/gesture_event_queue.h", |
| 1029 "renderer_host/input/input_ack_handler.h", | 1029 "renderer_host/input/input_ack_handler.h", |
| 1030 "renderer_host/input/input_router.h", | 1030 "renderer_host/input/input_router.h", |
| 1031 "renderer_host/input/input_router_client.h", | 1031 "renderer_host/input/input_router_client.h", |
| 1032 "renderer_host/input/input_router_config_helper.cc", | 1032 "renderer_host/input/input_router_config_helper.cc", |
| 1033 "renderer_host/input/input_router_config_helper.h", | 1033 "renderer_host/input/input_router_config_helper.h", |
| 1034 "renderer_host/input/input_router_impl.cc", | 1034 "renderer_host/input/input_router_impl.cc", |
| 1035 "renderer_host/input/input_router_impl.h", | 1035 "renderer_host/input/input_router_impl.h", |
| 1036 "renderer_host/input/legacy_touch_event_queue.cc", |
| 1037 "renderer_host/input/legacy_touch_event_queue.h", |
| 1036 "renderer_host/input/motion_event_web.cc", | 1038 "renderer_host/input/motion_event_web.cc", |
| 1037 "renderer_host/input/motion_event_web.h", | 1039 "renderer_host/input/motion_event_web.h", |
| 1038 "renderer_host/input/mouse_wheel_event_queue.cc", | 1040 "renderer_host/input/mouse_wheel_event_queue.cc", |
| 1039 "renderer_host/input/mouse_wheel_event_queue.h", | 1041 "renderer_host/input/mouse_wheel_event_queue.h", |
| 1040 "renderer_host/input/mouse_wheel_rails_filter_mac.cc", | 1042 "renderer_host/input/mouse_wheel_rails_filter_mac.cc", |
| 1041 "renderer_host/input/mouse_wheel_rails_filter_mac.h", | 1043 "renderer_host/input/mouse_wheel_rails_filter_mac.h", |
| 1042 "renderer_host/input/render_widget_host_latency_tracker.cc", | 1044 "renderer_host/input/render_widget_host_latency_tracker.cc", |
| 1043 "renderer_host/input/render_widget_host_latency_tracker.h", | 1045 "renderer_host/input/render_widget_host_latency_tracker.h", |
| 1044 "renderer_host/input/stylus_text_selector.cc", | 1046 "renderer_host/input/stylus_text_selector.cc", |
| 1045 "renderer_host/input/stylus_text_selector.h", | 1047 "renderer_host/input/stylus_text_selector.h", |
| (...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2022 if (!is_component_build) { | 2024 if (!is_component_build) { |
| 2023 public_deps = [ | 2025 public_deps = [ |
| 2024 ":browser", | 2026 ":browser", |
| 2025 ] | 2027 ] |
| 2026 } else { | 2028 } else { |
| 2027 public_deps = [ | 2029 public_deps = [ |
| 2028 "//third_party/leveldatabase", | 2030 "//third_party/leveldatabase", |
| 2029 ] | 2031 ] |
| 2030 } | 2032 } |
| 2031 } | 2033 } |
| OLD | NEW |