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

Side by Side Diff: chrome/interactive_ui_tests.isolate

Issue 993253002: MacViews: Implement Window-modal dialogs using sheets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update isolate Created 5 years, 9 months 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'conditions': [ 5 'conditions': [
6 ['use_x11==0', { 6 ['use_x11==0', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/test_env.py', 9 '../testing/test_env.py',
10 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 10 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 '../net/data/ssl/certificates/', 48 '../net/data/ssl/certificates/',
49 '../net/tools/testserver/', 49 '../net/tools/testserver/',
50 '../ppapi/tests/test_case.html', 50 '../ppapi/tests/test_case.html',
51 '../ppapi/tests/test_page.css', 51 '../ppapi/tests/test_page.css',
52 '../testing/test_env.py', 52 '../testing/test_env.py',
53 '../third_party/pyftpdlib/', 53 '../third_party/pyftpdlib/',
54 '../third_party/pywebsocket/', 54 '../third_party/pywebsocket/',
55 '../third_party/tlslite/', 55 '../third_party/tlslite/',
56 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 56 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
57 '<(PRODUCT_DIR)/resources.pak', 57 '<(PRODUCT_DIR)/resources.pak',
58 '<(PRODUCT_DIR)/ui_test.pak',
tapted 2015/03/17 10:39:48 There wasn't a precedent for a "toolkit_views" con
58 'test/data/', 59 'test/data/',
59 ], 60 ],
60 'read_only': 1, 61 'read_only': 1,
61 }, 62 },
62 }], 63 }],
63 ['OS=="linux" or OS=="win"', { 64 ['OS=="linux" or OS=="win"', {
64 'variables': { 65 'variables': {
65 'files': [ 66 'files': [
66 '<(PRODUCT_DIR)/chrome_100_percent.pak', 67 '<(PRODUCT_DIR)/chrome_100_percent.pak',
67 '<(PRODUCT_DIR)/locales/en-US.pak', 68 '<(PRODUCT_DIR)/locales/en-US.pak',
68 '<(PRODUCT_DIR)/locales/fr.pak', 69 '<(PRODUCT_DIR)/locales/fr.pak',
69 '<(PRODUCT_DIR)/ui_test.pak',
70 ], 70 ],
71 }, 71 },
72 }], 72 }],
73 ['OS=="mac"', { 73 ['OS=="mac"', {
74 'variables': { 74 'variables': {
75 'files': [ 75 'files': [
76 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 76 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
77 '<(PRODUCT_DIR)/<(mac_product_name).app/', 77 '<(PRODUCT_DIR)/<(mac_product_name).app/',
78 '<(PRODUCT_DIR)/ffmpegsumo.so', 78 '<(PRODUCT_DIR)/ffmpegsumo.so',
79 '<(PRODUCT_DIR)/osmesa.so', 79 '<(PRODUCT_DIR)/osmesa.so',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 '<(PRODUCT_DIR)/resources/chromeos/', 132 '<(PRODUCT_DIR)/resources/chromeos/',
133 ], 133 ],
134 }, 134 },
135 }], 135 }],
136 ], 136 ],
137 'includes': [ 137 'includes': [
138 '../base/base.isolate', 138 '../base/base.isolate',
139 '../gin/v8.isolate', 139 '../gin/v8.isolate',
140 ], 140 ],
141 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698