| 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 static_library("dom4_keycode_converter") { | 8 static_library("dom4_keycode_converter") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keycodes/dom3/dom_code.h", | 10 "keycodes/dom3/dom_code.h", |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 } | 165 } |
| 166 | 166 |
| 167 component("gesture_detection") { | 167 component("gesture_detection") { |
| 168 sources = [ | 168 sources = [ |
| 169 "gesture_detection/bitset_32.h", | 169 "gesture_detection/bitset_32.h", |
| 170 "gesture_detection/filtered_gesture_provider.cc", | 170 "gesture_detection/filtered_gesture_provider.cc", |
| 171 "gesture_detection/filtered_gesture_provider.h", | 171 "gesture_detection/filtered_gesture_provider.h", |
| 172 "gesture_detection/gesture_configuration.cc", | 172 "gesture_detection/gesture_configuration.cc", |
| 173 "gesture_detection/gesture_configuration.h", | 173 "gesture_detection/gesture_configuration.h", |
| 174 "gesture_detection/gesture_detection_export.h", | 174 "gesture_detection/gesture_detection_export.h", |
| 175 "gesture_detection/gesture_detection_switches.cc", |
| 176 "gesture_detection/gesture_detection_switches.h", |
| 175 "gesture_detection/gesture_detector.cc", | 177 "gesture_detection/gesture_detector.cc", |
| 176 "gesture_detection/gesture_detector.h", | 178 "gesture_detection/gesture_detector.h", |
| 177 "gesture_detection/gesture_event_data.cc", | 179 "gesture_detection/gesture_event_data.cc", |
| 178 "gesture_detection/gesture_event_data.h", | 180 "gesture_detection/gesture_event_data.h", |
| 179 "gesture_detection/gesture_event_data_packet.cc", | 181 "gesture_detection/gesture_event_data_packet.cc", |
| 180 "gesture_detection/gesture_event_data_packet.h", | 182 "gesture_detection/gesture_event_data_packet.h", |
| 181 "gesture_detection/gesture_listeners.cc", | 183 "gesture_detection/gesture_listeners.cc", |
| 182 "gesture_detection/gesture_listeners.h", | 184 "gesture_detection/gesture_listeners.h", |
| 183 "gesture_detection/gesture_provider.cc", | 185 "gesture_detection/gesture_provider.cc", |
| 184 "gesture_detection/gesture_provider.h", | 186 "gesture_detection/gesture_provider.h", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 if (is_nacl) { | 358 if (is_nacl) { |
| 357 source_set("latency_info") { | 359 source_set("latency_info") { |
| 358 sources = [ | 360 sources = [ |
| 359 "ipc/latency_info_param_traits.cc", | 361 "ipc/latency_info_param_traits.cc", |
| 360 "ipc/latency_info_param_traits.h", | 362 "ipc/latency_info_param_traits.h", |
| 361 "latency_info.cc", | 363 "latency_info.cc", |
| 362 "latency_info.h", | 364 "latency_info.h", |
| 363 ] | 365 ] |
| 364 } | 366 } |
| 365 } | 367 } |
| OLD | NEW |