| 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 { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'sources!': [ | 56 'sources!': [ |
| 57 'touch_handle_drawable_aura.cc', | 57 'touch_handle_drawable_aura.cc', |
| 58 'touch_handle_drawable_aura.h', | 58 'touch_handle_drawable_aura.h', |
| 59 'touch_selection_menu_runner.cc', | 59 'touch_selection_menu_runner.cc', |
| 60 'touch_selection_menu_runner.h', | 60 'touch_selection_menu_runner.h', |
| 61 ], | 61 ], |
| 62 }], | 62 }], |
| 63 ], | 63 ], |
| 64 }, | 64 }, |
| 65 { | 65 { |
| 66 'target_name': 'ui_touch_selection_test_support', | |
| 67 'type': 'static_library', | |
| 68 'dependencies': [ | |
| 69 'ui_touch_selection', | |
| 70 ], | |
| 71 'sources': [ | |
| 72 'touch_selection_controller_test_api.cc', | |
| 73 'touch_selection_controller_test_api.h', | |
| 74 ], | |
| 75 }, | |
| 76 { | |
| 77 'target_name': 'ui_touch_selection_unittests', | 66 'target_name': 'ui_touch_selection_unittests', |
| 78 'type': '<(gtest_target_type)', | 67 'type': '<(gtest_target_type)', |
| 79 'dependencies': [ | 68 'dependencies': [ |
| 80 '../../base/base.gyp:base', | 69 '../../base/base.gyp:base', |
| 81 '../../base/base.gyp:run_all_unittests', | 70 '../../base/base.gyp:run_all_unittests', |
| 82 '../../base/base.gyp:test_support_base', | 71 '../../base/base.gyp:test_support_base', |
| 83 '../../testing/gmock.gyp:gmock', | 72 '../../testing/gmock.gyp:gmock', |
| 84 '../../testing/gtest.gyp:gtest', | 73 '../../testing/gtest.gyp:gtest', |
| 85 '../base/ui_base.gyp:ui_base', | 74 '../base/ui_base.gyp:ui_base', |
| 86 '../events/events.gyp:events_test_support', | 75 '../events/events.gyp:events_test_support', |
| 87 '../gfx/gfx.gyp:gfx', | 76 '../gfx/gfx.gyp:gfx', |
| 88 '../gfx/gfx.gyp:gfx_test_support', | 77 '../gfx/gfx.gyp:gfx_test_support', |
| 89 'ui_touch_selection', | 78 'ui_touch_selection', |
| 90 'ui_touch_selection_test_support', | |
| 91 ], | 79 ], |
| 92 'sources': [ | 80 'sources': [ |
| 93 'longpress_drag_selector_unittest.cc', | 81 'longpress_drag_selector_unittest.cc', |
| 94 'touch_handle_unittest.cc', | 82 'touch_handle_unittest.cc', |
| 95 'touch_selection_controller_unittest.cc', | 83 'touch_selection_controller_unittest.cc', |
| 96 ], | 84 ], |
| 97 'include_dirs': [ | 85 'include_dirs': [ |
| 98 '../..', | 86 '../..', |
| 99 ], | 87 ], |
| 100 'conditions': [ | 88 'conditions': [ |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 'dependencies': [ | 145 'dependencies': [ |
| 158 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 146 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 159 ], | 147 ], |
| 160 }], | 148 }], |
| 161 ], | 149 ], |
| 162 }, | 150 }, |
| 163 ], | 151 ], |
| 164 }], | 152 }], |
| 165 ], | 153 ], |
| 166 } | 154 } |
| OLD | NEW |