| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 ":touch_selection", | 88 ":touch_selection", |
| 89 "//base/test:run_all_unittests", | 89 "//base/test:run_all_unittests", |
| 90 "//testing/gmock:gmock", | 90 "//testing/gmock:gmock", |
| 91 "//testing/gtest:gtest", | 91 "//testing/gtest:gtest", |
| 92 "//ui/base:base", | 92 "//ui/base:base", |
| 93 "//ui/events:test_support", | 93 "//ui/events:test_support", |
| 94 "//ui/gfx:gfx", | 94 "//ui/gfx:gfx", |
| 95 "//ui/gfx:test_support", | 95 "//ui/gfx:test_support", |
| 96 ] | 96 ] |
| 97 | 97 |
| 98 data_deps = [ "//third_party/mesa:osmesa" ] | 98 data_deps = [ |
| 99 "//third_party/mesa:osmesa", |
| 100 ] |
| 99 } | 101 } |
| 100 | 102 |
| 101 if (is_android) { | 103 if (is_android) { |
| 102 java_cpp_enum("ui_touch_selection_enums_srcjar") { | 104 java_cpp_enum("ui_touch_selection_enums_srcjar") { |
| 103 sources = [ | 105 sources = [ |
| 104 "selection_event_type.h", | 106 "selection_event_type.h", |
| 105 ] | 107 ] |
| 106 outputs = [ | 108 outputs = [ |
| 107 "org/chromium/ui/touch_selection/SelectionEventType.java", | 109 "org/chromium/ui/touch_selection/SelectionEventType.java", |
| 108 ] | 110 ] |
| 109 } | 111 } |
| 110 java_cpp_enum("ui_touch_handle_orientation_srcjar") { | 112 java_cpp_enum("ui_touch_handle_orientation_srcjar") { |
| 111 sources = [ | 113 sources = [ |
| 112 "touch_handle_orientation.h", | 114 "touch_handle_orientation.h", |
| 113 ] | 115 ] |
| 114 outputs = [ | 116 outputs = [ |
| 115 "org/chromium/ui/touch_selection/TouchHandleOrientation.java", | 117 "org/chromium/ui/touch_selection/TouchHandleOrientation.java", |
| 116 ] | 118 ] |
| 117 } | 119 } |
| 118 } | 120 } |
| OLD | NEW |