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

Side by Side Diff: chromeos/chromeos.gyp

Issue 1219123002: Convert chromeos_unittests to run exclusively on Swarming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | chromeos/chromeos_unittests.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'chromeos_sources': [ 9 'chromeos_sources': [
10 'accelerometer/accelerometer_reader.cc', 10 'accelerometer/accelerometer_reader.cc',
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 'sources': [ 735 'sources': [
736 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto', 736 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto',
737 ], 737 ],
738 'variables': { 738 'variables': {
739 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 739 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
740 'proto_out_dir': 'chromeos/cryptohome', 740 'proto_out_dir': 'chromeos/cryptohome',
741 }, 741 },
742 'includes': ['../build/protoc.gypi'], 742 'includes': ['../build/protoc.gypi'],
743 }, 743 },
744 ], 744 ],
745 'conditions': [
746 ['test_isolation_mode != "noop"', {
747 'targets': [
748 {
749 'target_name': 'chromeos_unittests_run',
750 'type': 'none',
751 'dependencies': [
752 'chromeos_unittests',
753 ],
754 'includes': [
755 '../build/isolate.gypi',
756 ],
757 'sources': [
758 'chromeos_unittests.isolate',
759 ],
760 },
761 ],
762 }],
763 ],
745 } 764 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/chromeos_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698