OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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': ['../build/common.gypi'], | 10 'includes': ['../build/common.gypi'], |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 ], | 44 ], |
45 }, | 45 }, |
46 ], # targets | 46 ], # targets |
47 'conditions': [ | 47 'conditions': [ |
48 ['OS=="android"', { | 48 ['OS=="android"', { |
49 'targets': [ | 49 'targets': [ |
50 { | 50 { |
51 'target_name': 'common_video_unittests_apk_target', | 51 'target_name': 'common_video_unittests_apk_target', |
52 'type': 'none', | 52 'type': 'none', |
53 'dependencies': [ | 53 'dependencies': [ |
54 '<(apk_tests_path):common_video_unittests_apk', | 54 '<(android_tests_path):common_video_unittests_apk', |
55 ], | 55 ], |
56 }, | 56 }, |
57 ], | 57 ], |
58 'conditions': [ | 58 'conditions': [ |
59 ['test_isolation_mode != "noop"', | 59 ['test_isolation_mode != "noop"', |
60 { | 60 { |
61 'targets': [ | 61 'targets': [ |
62 { | 62 { |
63 'target_name': 'common_video_unittests_apk_run', | 63 'target_name': 'common_video_unittests_apk_run', |
64 'type': 'none', | 64 'type': 'none', |
65 'dependencies': [ | 65 'dependencies': [ |
66 '<(apk_tests_path):common_video_unittests_apk', | 66 '<(android_tests_path):common_video_unittests_apk', |
67 ], | 67 ], |
68 'includes': [ | 68 'includes': [ |
69 '../build/isolate.gypi', | 69 '../build/isolate.gypi', |
70 ], | 70 ], |
71 'sources': [ | 71 'sources': [ |
72 'common_video_unittests_apk.isolate', | 72 'common_video_unittests_apk.isolate', |
73 ], | 73 ], |
74 }, | 74 }, |
75 ], | 75 ], |
76 }, | 76 }, |
(...skipping 12 matching lines...) Expand all Loading... |
89 '../build/isolate.gypi', | 89 '../build/isolate.gypi', |
90 ], | 90 ], |
91 'sources': [ | 91 'sources': [ |
92 'common_video_unittests.isolate', | 92 'common_video_unittests.isolate', |
93 ], | 93 ], |
94 }, | 94 }, |
95 ], | 95 ], |
96 }], | 96 }], |
97 ], | 97 ], |
98 } | 98 } |
OLD | NEW |