| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'ui_touch_selection', | 11 'target_name': 'ui_touch_selection', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 15 '../base/ui_base.gyp:ui_base', | 15 '../base/ui_base.gyp:ui_base', |
| 16 '../events/events.gyp:events', | 16 '../events/events.gyp:events', |
| 17 '../events/events.gyp:gesture_detection', | 17 '../events/events.gyp:gesture_detection', |
| 18 '../gfx/gfx.gyp:gfx_geometry', | 18 '../gfx/gfx.gyp:gfx_geometry', |
| 19 ], | 19 ], |
| 20 'defines': [ | 20 'defines': [ |
| 21 'UI_TOUCH_SELECTION_IMPLEMENTATION', | 21 'UI_TOUCH_SELECTION_IMPLEMENTATION', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'selection_event_type.h', | 24 'selection_event_type.h', |
| 25 'touch_handle.cc', | 25 'touch_handle.cc', |
| 26 'touch_handle.h', | 26 'touch_handle.h', |
| 27 'touch_handle_orientation.h', |
| 27 'touch_selection_controller.cc', | 28 'touch_selection_controller.cc', |
| 28 'touch_selection_controller.h', | 29 'touch_selection_controller.h', |
| 29 'ui_touch_selection_export.h', | 30 'ui_touch_selection_export.h', |
| 30 ], | 31 ], |
| 31 'include_dirs': [ | 32 'include_dirs': [ |
| 32 '../..', | 33 '../..', |
| 33 ], | 34 ], |
| 34 }, | 35 }, |
| 35 { | 36 { |
| 36 'target_name': 'ui_touch_selection_unittests', | 37 'target_name': 'ui_touch_selection_unittests', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 67 'targets': [ | 68 'targets': [ |
| 68 { | 69 { |
| 69 'target_name': 'selection_event_type_java', | 70 'target_name': 'selection_event_type_java', |
| 70 'type': 'none', | 71 'type': 'none', |
| 71 'variables': { | 72 'variables': { |
| 72 'source_file': 'selection_event_type.h', | 73 'source_file': 'selection_event_type.h', |
| 73 }, | 74 }, |
| 74 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 75 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
| 75 }, | 76 }, |
| 76 { | 77 { |
| 78 'target_name': 'touch_handle_orientation_java', |
| 79 'type': 'none', |
| 80 'variables': { |
| 81 'source_file': 'touch_handle_orientation.h', |
| 82 }, |
| 83 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
| 84 }, |
| 85 { |
| 77 'target_name': 'ui_touch_selection_unittests_apk', | 86 'target_name': 'ui_touch_selection_unittests_apk', |
| 78 'type': 'none', | 87 'type': 'none', |
| 79 'dependencies': [ | 88 'dependencies': [ |
| 80 'ui_touch_selection_unittests', | 89 'ui_touch_selection_unittests', |
| 81 ], | 90 ], |
| 82 'variables': { | 91 'variables': { |
| 83 'test_suite_name': 'ui_touch_selection_unittests', | 92 'test_suite_name': 'ui_touch_selection_unittests', |
| 84 }, | 93 }, |
| 85 'includes': [ '../../build/apk_test.gypi' ], | 94 'includes': [ '../../build/apk_test.gypi' ], |
| 86 }, | 95 }, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 105 'dependencies': [ | 114 'dependencies': [ |
| 106 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 115 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 107 ], | 116 ], |
| 108 }], | 117 }], |
| 109 ], | 118 ], |
| 110 }, | 119 }, |
| 111 ], | 120 ], |
| 112 }], | 121 }], |
| 113 ], | 122 ], |
| 114 } | 123 } |
| OLD | NEW |