| 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("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 | 10 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 156 |
| 157 if (toolkit_views) { | 157 if (toolkit_views) { |
| 158 deps += [ "//ui/events" ] | 158 deps += [ "//ui/events" ] |
| 159 } | 159 } |
| 160 | 160 |
| 161 if (!is_win) { | 161 if (!is_win) { |
| 162 sources += [ | 162 sources += [ |
| 163 "file_descriptor_info_impl.cc", | 163 "file_descriptor_info_impl.cc", |
| 164 "file_descriptor_info_impl.h", | 164 "file_descriptor_info_impl.h", |
| 165 ] | 165 ] |
| 166 sources -= [ "renderer_host/web_input_event_aurawin.cc" ] | |
| 167 } | 166 } |
| 168 | 167 |
| 169 if (enable_basic_printing || enable_print_preview) { | 168 if (enable_basic_printing || enable_print_preview) { |
| 170 deps += [ "//printing" ] | 169 deps += [ "//printing" ] |
| 171 } | 170 } |
| 172 | 171 |
| 173 if (!is_mac) { | 172 if (!is_mac) { |
| 174 deps += [ "//sandbox" ] | 173 deps += [ "//sandbox" ] |
| 175 } | 174 } |
| 176 if (!is_android) { | 175 if (!is_android) { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 "renderer_host/compositor_resize_lock_aura.h", | 396 "renderer_host/compositor_resize_lock_aura.h", |
| 398 "renderer_host/input/synthetic_gesture_target_aura.cc", | 397 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 399 "renderer_host/input/synthetic_gesture_target_aura.h", | 398 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 400 "renderer_host/input/touch_selection_controller_client_aura.cc", | 399 "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 401 "renderer_host/input/touch_selection_controller_client_aura.h", | 400 "renderer_host/input/touch_selection_controller_client_aura.h", |
| 402 "renderer_host/native_web_keyboard_event_aura.cc", | 401 "renderer_host/native_web_keyboard_event_aura.cc", |
| 403 "renderer_host/render_widget_host_view_aura.cc", | 402 "renderer_host/render_widget_host_view_aura.cc", |
| 404 "renderer_host/render_widget_host_view_aura.h", | 403 "renderer_host/render_widget_host_view_aura.h", |
| 405 "renderer_host/ui_events_helper.cc", | 404 "renderer_host/ui_events_helper.cc", |
| 406 "renderer_host/ui_events_helper.h", | 405 "renderer_host/ui_events_helper.h", |
| 407 "renderer_host/web_input_event_aura.cc", | |
| 408 "renderer_host/web_input_event_aura.h", | |
| 409 "web_contents/aura/gesture_nav_simple.cc", | 406 "web_contents/aura/gesture_nav_simple.cc", |
| 410 "web_contents/aura/gesture_nav_simple.h", | 407 "web_contents/aura/gesture_nav_simple.h", |
| 411 "web_contents/aura/overscroll_navigation_overlay.cc", | 408 "web_contents/aura/overscroll_navigation_overlay.cc", |
| 412 "web_contents/aura/overscroll_navigation_overlay.h", | 409 "web_contents/aura/overscroll_navigation_overlay.h", |
| 413 "web_contents/aura/overscroll_window_animation.cc", | 410 "web_contents/aura/overscroll_window_animation.cc", |
| 414 "web_contents/aura/overscroll_window_animation.h", | 411 "web_contents/aura/overscroll_window_animation.h", |
| 415 "web_contents/aura/overscroll_window_delegate.cc", | 412 "web_contents/aura/overscroll_window_delegate.cc", |
| 416 "web_contents/aura/overscroll_window_delegate.h", | 413 "web_contents/aura/overscroll_window_delegate.h", |
| 417 "web_contents/aura/shadow_layer_delegate.cc", | 414 "web_contents/aura/shadow_layer_delegate.cc", |
| 418 "web_contents/aura/shadow_layer_delegate.h", | 415 "web_contents/aura/shadow_layer_delegate.h", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 if (!is_component_build) { | 502 if (!is_component_build) { |
| 506 public_deps = [ | 503 public_deps = [ |
| 507 ":browser", | 504 ":browser", |
| 508 ] | 505 ] |
| 509 } else { | 506 } else { |
| 510 public_deps = [ | 507 public_deps = [ |
| 511 "//third_party/leveldatabase", | 508 "//third_party/leveldatabase", |
| 512 ] | 509 ] |
| 513 } | 510 } |
| 514 } | 511 } |
| OLD | NEW |