| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 static_library("test_support") { | 57 static_library("test_support") { |
| 58 testonly = true | 58 testonly = true |
| 59 | 59 |
| 60 sources = [ | 60 sources = [ |
| 61 "touch_selection_controller_test_api.cc", | 61 "touch_selection_controller_test_api.cc", |
| 62 "touch_selection_controller_test_api.h", | 62 "touch_selection_controller_test_api.h", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 ":touch_selection", | 66 ":touch_selection", |
| 67 "//base:base", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| 69 | 70 |
| 70 # TODO(GYP): Delete this after we've converted everything to GN. | 71 # TODO(GYP): Delete this after we've converted everything to GN. |
| 71 # The _run targets exist only for compatibility w/ GYP. | 72 # The _run targets exist only for compatibility w/ GYP. |
| 72 group("ui_touch_selection_unittests_run") { | 73 group("ui_touch_selection_unittests_run") { |
| 73 testonly = true | 74 testonly = true |
| 74 deps = [ | 75 deps = [ |
| 75 ":ui_touch_selection_unittests", | 76 ":ui_touch_selection_unittests", |
| 76 ] | 77 ] |
| (...skipping 28 matching lines...) Expand all Loading... |
| 105 sources = [ | 106 sources = [ |
| 106 "selection_event_type.h", | 107 "selection_event_type.h", |
| 107 ] | 108 ] |
| 108 } | 109 } |
| 109 java_cpp_enum("ui_touch_handle_orientation_srcjar") { | 110 java_cpp_enum("ui_touch_handle_orientation_srcjar") { |
| 110 sources = [ | 111 sources = [ |
| 111 "touch_handle_orientation.h", | 112 "touch_handle_orientation.h", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| 114 } | 115 } |
| OLD | NEW |