| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'dependencies': [ | 79 'dependencies': [ |
| 80 'ui_touch_selection_unittests', | 80 'ui_touch_selection_unittests', |
| 81 ], | 81 ], |
| 82 'variables': { | 82 'variables': { |
| 83 'test_suite_name': 'ui_touch_selection_unittests', | 83 'test_suite_name': 'ui_touch_selection_unittests', |
| 84 }, | 84 }, |
| 85 'includes': [ '../../build/apk_test.gypi' ], | 85 'includes': [ '../../build/apk_test.gypi' ], |
| 86 }, | 86 }, |
| 87 ], | 87 ], |
| 88 }], # OS == "android" | 88 }], # OS == "android" |
| 89 ['test_isolation_mode != "noop"', { |
| 90 'targets': [ |
| 91 { |
| 92 'target_name': 'ui_touch_selection_unittests_run', |
| 93 'type': 'none', |
| 94 'dependencies': [ |
| 95 'ui_touch_selection_unittests', |
| 96 ], |
| 97 'includes': [ |
| 98 '../../build/isolate.gypi', |
| 99 ], |
| 100 'sources': [ |
| 101 'ui_touch_selection_unittests.isolate', |
| 102 ], |
| 103 'conditions': [ |
| 104 ['use_x11 == 1', { |
| 105 'dependencies': [ |
| 106 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 107 ], |
| 108 }], |
| 109 ], |
| 110 }, |
| 111 ], |
| 112 }], |
| 89 ], | 113 ], |
| 90 } | 114 } |
| OLD | NEW |