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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 ], | 56 ], |
57 }, | 57 }, |
58 ], | 58 ], |
59 'conditions': [ | 59 'conditions': [ |
60 ['OS=="android"', { | 60 ['OS=="android"', { |
61 'targets': [ | 61 'targets': [ |
62 { | 62 { |
63 'target_name': 'system_wrappers_unittests_apk_target', | 63 'target_name': 'system_wrappers_unittests_apk_target', |
64 'type': 'none', | 64 'type': 'none', |
65 'dependencies': [ | 65 'dependencies': [ |
66 '<(apk_tests_path):system_wrappers_unittests_apk', | 66 '<(android_tests_path):system_wrappers_unittests_apk', |
67 ], | 67 ], |
68 }, | 68 }, |
69 ], | 69 ], |
70 'conditions': [ | 70 'conditions': [ |
71 ['test_isolation_mode != "noop"', | 71 ['test_isolation_mode != "noop"', |
72 { | 72 { |
73 'targets': [ | 73 'targets': [ |
74 { | 74 { |
75 'target_name': 'system_wrappers_unittests_apk_run', | 75 'target_name': 'system_wrappers_unittests_apk_run', |
76 'type': 'none', | 76 'type': 'none', |
77 'dependencies': [ | 77 'dependencies': [ |
78 '<(apk_tests_path):system_wrappers_unittests_apk', | 78 '<(android_tests_path):system_wrappers_unittests_apk', |
79 ], | 79 ], |
80 'includes': [ | 80 'includes': [ |
81 '../build/isolate.gypi', | 81 '../build/isolate.gypi', |
82 ], | 82 ], |
83 'sources': [ | 83 'sources': [ |
84 'system_wrappers_unittests_apk.isolate', | 84 'system_wrappers_unittests_apk.isolate', |
85 ], | 85 ], |
86 }, | 86 }, |
87 ], | 87 ], |
88 }, | 88 }, |
(...skipping 13 matching lines...) Expand all Loading... |
102 ], | 102 ], |
103 'sources': [ | 103 'sources': [ |
104 'system_wrappers_unittests.isolate', | 104 'system_wrappers_unittests.isolate', |
105 ], | 105 ], |
106 }, | 106 }, |
107 ], | 107 ], |
108 }], | 108 }], |
109 ], | 109 ], |
110 } | 110 } |
111 | 111 |
OLD | NEW |