Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(959)

Side by Side Diff: ui/touch_selection/ui_touch_selection.gyp

Issue 794903004: Isolate ui_touch_selection_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698