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

Side by Side Diff: chrome/sync_integration_tests.isolate

Issue 1103793002: Add support for escaped target names in isolate driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix sync and ui targets as well Created 5 years, 7 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)', 9 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
10 '--test-launcher-bot-mode', 10 '--test-launcher-bot-mode',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 }], 59 }],
60 ['OS=="mac"', { 60 ['OS=="mac"', {
61 'variables': { 61 'variables': {
62 'files': [ 62 'files': [
63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
64 '<(PRODUCT_DIR)/<(mac_product_name).app/', 64 '<(PRODUCT_DIR)/<(mac_product_name).app/',
65 '<(PRODUCT_DIR)/ffmpegsumo.so', 65 '<(PRODUCT_DIR)/ffmpegsumo.so',
66 ], 66 ],
67 }, 67 },
68 }], 68 }],
69 ['OS=="mac" and component=="shared_library"', {
70 'variables': {
71 'files': [
72 '<(PRODUCT_DIR)/libchrome_main_dll.dylib',
73 ],
74 },
75 }],
69 ['OS=="mac" and asan==1 and fastbuild==0', { 76 ['OS=="mac" and asan==1 and fastbuild==0', {
70 'variables': { 77 'variables': {
71 'files': [ 78 'files': [
72 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/', 79 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/',
73 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/', 80 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
74 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/', 81 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/',
75 ], 82 ],
76 }, 83 },
77 }], 84 }],
78 ['OS=="win"', { 85 ['OS=="win"', {
(...skipping 25 matching lines...) Expand all
104 ], 111 ],
105 }, 112 },
106 }], 113 }],
107 ], 114 ],
108 'includes': [ 115 'includes': [
109 '../base/base.isolate', 116 '../base/base.isolate',
110 '../gin/v8.isolate', 117 '../gin/v8.isolate',
111 '../third_party/angle/angle.isolate', 118 '../third_party/angle/angle.isolate',
112 ], 119 ],
113 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698