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

Side by Side Diff: webrtc/modules/audio_coding/audio_coding_tests.gypi

Issue 1373513002: Update isolate.gypi to support Swarming + move .isolate files (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated location in webrtc/build/android/test_runner.py 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
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'targets': [ 44 'targets': [
45 { 45 {
46 'target_name': 'audio_codec_speed_tests_apk_target', 46 'target_name': 'audio_codec_speed_tests_apk_target',
47 'type': 'none', 47 'type': 'none',
48 'dependencies': [ 48 'dependencies': [
49 '<(apk_tests_path):audio_codec_speed_tests_apk', 49 '<(apk_tests_path):audio_codec_speed_tests_apk',
50 ], 50 ],
51 }, 51 },
52 ], 52 ],
53 }], 53 }],
54 ['test_isolation_mode != "noop"', {
55 'targets': [
56 {
57 'target_name': 'audio_codec_speed_tests_run',
58 'type': 'none',
59 'dependencies': [
60 'audio_codec_speed_tests',
61 ],
62 'includes': [
63 '../../build/isolate.gypi',
64 ],
65 'sources': [
66 'audio_codec_speed_tests.isolate',
67 ],
68 },
69 ],
70 }],
71 ], 54 ],
72 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698