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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1361523003: Add crash_service to Telemetry's isolates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fck
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | chrome/telemetry.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 5 'variables': {
6 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 3208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3219 # include this file via a wildcard (such as chrome_tests.gypi). 3219 # include this file via a wildcard (such as chrome_tests.gypi).
3220 # If we didn't do this the All target ends up with a rule that 3220 # If we didn't do this the All target ends up with a rule that
3221 # makes it unnecessarily compile in certain situations. 3221 # makes it unnecessarily compile in certain situations.
3222 'suppress_wildcard': 1, 3222 'suppress_wildcard': 1,
3223 'direct_dependent_settings': { 3223 'direct_dependent_settings': {
3224 'includes': [ 3224 'includes': [
3225 '../build/isolate.gypi', 3225 '../build/isolate.gypi',
3226 ], 3226 ],
3227 }, 3227 },
3228 }, 3228 },
3229 {
3230 'target_name': 'telemetry_gpu_unittests_run',
3231 'type': 'none',
3232 'dependencies': [
3233 '../content/content_shell_and_tests.gyp:telemetry_base',
3234 ],
3235 'includes': [
3236 '../build/isolate.gypi',
3237 ],
3238 'sources': [
3239 'telemetry_gpu_unittests.isolate',
3240 ],
3241 },
3229 { 3242 {
3230 'target_name': 'telemetry_chrome_test_base', 3243 'target_name': 'telemetry_chrome_test_base',
3231 'type': 'none', 3244 'type': 'none',
3232 'dependencies': [ 3245 'dependencies': [
3233 '../content/content_shell_and_tests.gyp:telemetry_base', 3246 '../content/content_shell_and_tests.gyp:telemetry_base',
3234 ], 3247 ],
3235 'conditions': [ 3248 'conditions': [
3236 ['OS=="linux" or OS=="mac"', { 3249 ['OS=="linux" or OS=="mac"', {
3237 'dependencies': [ 3250 'dependencies': [
3238 '../breakpad/breakpad.gyp:dump_syms', 3251 '../breakpad/breakpad.gyp:dump_syms',
3239 ], 3252 ],
3240 }], 3253 }],
3241 ['OS=="mac"', { 3254 ['OS=="mac"', {
3242 'dependencies': [ 3255 'dependencies': [
3243 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_d atabase_util', 3256 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_d atabase_util',
3244 ], 3257 ],
3245 }], 3258 }],
3259 ['OS=="win"', {
3260 'dependencies': [
3261 'chrome.gyp:crash_service',
3262 ],
3263 }],
3246 ], 3264 ],
3247 }, 3265 },
3248 { 3266 {
3249 # GN: //gpu:angle_unittests_run 3267 # GN: //gpu:angle_unittests_run
3250 'target_name': 'angle_unittests_run', 3268 'target_name': 'angle_unittests_run',
3251 'type': 'none', 3269 'type': 'none',
3252 'dependencies': [ 3270 'dependencies': [
3253 '../gpu/gpu.gyp:angle_unittests', 3271 '../gpu/gpu.gyp:angle_unittests',
3254 'gpu_tests_base', 3272 'gpu_tests_base',
3255 ], 3273 ],
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
3368 'utility', 3386 'utility',
3369 ], 3387 ],
3370 'sources': [ 3388 'sources': [
3371 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3389 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3372 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3390 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3373 ], 3391 ],
3374 }] 3392 }]
3375 }], 3393 }],
3376 ], # 'conditions' 3394 ], # 'conditions'
3377 } 3395 }
OLDNEW
« no previous file with comments | « no previous file | chrome/telemetry.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698