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