Cleanup: Only do a Local State file lookup when needed.
[chromium-blink-merge.git] / ui / touch_selection / BUILD.gn
blobe6767cb4f91459b722e65ee1eed841caf34195b0
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
3 # found in the LICENSE file.
5 import("//build/config/ui.gni")
6 import("//testing/test.gni")
8 if (is_android) {
9   import("//build/config/android/rules.gni")
12 component("touch_selection") {
13   output_name = "ui_touch_selection"
15   sources = [
16     "selection_event_type.h",
17     "touch_handle.cc",
18     "touch_handle.h",
19     "touch_selection_controller.cc",
20     "touch_selection_controller.h",
21     "ui_touch_selection_export.h",
22   ]
24   defines = [ "UI_TOUCH_SELECTION_IMPLEMENTATION" ]
26   deps = [
27     "//base:base",
28     "//ui/base:base",
29     "//ui/events:events",
30     "//ui/events:gesture_detection",
31     "//ui/gfx/geometry:geometry",
32   ]
35 test("ui_touch_selection_unittests") {
36   sources = [
37     "touch_handle_unittest.cc",
38     "touch_selection_controller_unittest.cc",
39   ]
41   deps = [
42     ":touch_selection",
43     "//base/test:run_all_unittests",
44     "//testing/gtest:gtest",
45     "//ui/base:base",
46     "//ui/events:test_support",
47     "//ui/gfx:gfx",
48     "//ui/gfx:test_support",
49   ]
52 if (is_android) {
53   java_cpp_enum("ui_touch_selection_enums_srcjar") {
54     sources = [
55       "selection_event_type.h",
56     ]
57     outputs = [
58       "org/chromium/ui/touch_selection/SelectionEventType.java",
59     ]
60   }