| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "ui_touch_selection_export.h", | 25 "ui_touch_selection_export.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 defines = [ "UI_TOUCH_SELECTION_IMPLEMENTATION" ] | 28 defines = [ "UI_TOUCH_SELECTION_IMPLEMENTATION" ] |
| 29 | 29 |
| 30 deps = [ | 30 deps = [ |
| 31 "//base:base", | 31 "//base:base", |
| 32 "//ui/base:base", | 32 "//ui/base:base", |
| 33 "//ui/events:events", | 33 "//ui/events:events", |
| 34 "//ui/events:gesture_detection", | 34 "//ui/events:gesture_detection", |
| 35 "//ui/gfx/geometry:geometry", | 35 "//ui/gfx", |
| 36 "//ui/gfx/geometry", |
| 36 ] | 37 ] |
| 37 | 38 |
| 38 if (use_aura) { | 39 if (use_aura) { |
| 39 deps += [ | 40 deps += [ |
| 40 "//skia:skia", | 41 "//skia:skia", |
| 41 "//ui/aura:aura", | 42 "//ui/aura:aura", |
| 42 "//ui/aura_extra:aura_extra", | 43 "//ui/aura_extra:aura_extra", |
| 43 "//ui/compositor:compositor", | 44 "//ui/compositor:compositor", |
| 44 "//ui/gfx:gfx", | 45 "//ui/gfx:gfx", |
| 45 "//ui/resources", | 46 "//ui/resources", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 sources = [ | 98 sources = [ |
| 98 "selection_event_type.h", | 99 "selection_event_type.h", |
| 99 ] | 100 ] |
| 100 } | 101 } |
| 101 java_cpp_enum("ui_touch_handle_orientation_srcjar") { | 102 java_cpp_enum("ui_touch_handle_orientation_srcjar") { |
| 102 sources = [ | 103 sources = [ |
| 103 "touch_handle_orientation.h", | 104 "touch_handle_orientation.h", |
| 104 ] | 105 ] |
| 105 } | 106 } |
| 106 } | 107 } |
| OLD | NEW |