OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # This library should build cleanly with the extra warnings turned on | 7 # This library should build cleanly with the extra warnings turned on |
8 # for Chromium. | 8 # for Chromium. |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 'emma_never_instrument': 1, | |
11 }, | 10 }, |
12 'targets': [ | 11 'targets': [ |
13 # The C++ files generated from the cache invalidation protocol buffers. | 12 # The C++ files generated from the cache invalidation protocol buffers. |
14 { | 13 { |
15 'target_name': 'cacheinvalidation_proto_cpp', | 14 'target_name': 'cacheinvalidation_proto_cpp', |
16 'type': 'static_library', | 15 'type': 'static_library', |
17 'variables': { | 16 'variables': { |
18 # The relative path of the cacheinvalidation proto files from this | 17 # The relative path of the cacheinvalidation proto files from this |
19 # gyp-file. | 18 # gyp-file. |
20 # TODO(akalin): Add a RULE_INPUT_DIR predefined variable to gyp so | 19 # TODO(akalin): Add a RULE_INPUT_DIR predefined variable to gyp so |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 '../../build/isolate.gypi', | 171 '../../build/isolate.gypi', |
173 'cacheinvalidation_unittests.isolate', | 172 'cacheinvalidation_unittests.isolate', |
174 ], | 173 ], |
175 'sources': [ | 174 'sources': [ |
176 'cacheinvalidation_unittests.isolate', | 175 'cacheinvalidation_unittests.isolate', |
177 ], | 176 ], |
178 }, | 177 }, |
179 ], | 178 ], |
180 }], | 179 }], |
181 ['OS == "android"', { | 180 ['OS == "android"', { |
| 181 'variables': { |
| 182 'emma_never_instrument': 1, |
| 183 }, |
182 'targets': [ | 184 'targets': [ |
183 { | 185 { |
184 'target_name': 'cacheinvalidation_proto_java', | 186 'target_name': 'cacheinvalidation_proto_java', |
185 'type': 'none', | 187 'type': 'none', |
186 'variables': { | 188 'variables': { |
187 'proto_in_dir': '../../third_party/cacheinvalidation/src/proto', | 189 'proto_in_dir': '../../third_party/cacheinvalidation/src/proto', |
188 }, | 190 }, |
189 'sources': [ | 191 'sources': [ |
190 '<(proto_in_dir)/android_channel.proto', | 192 '<(proto_in_dir)/android_channel.proto', |
191 '<(proto_in_dir)/android_listener.proto', | 193 '<(proto_in_dir)/android_listener.proto', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/InvalidationService.aidl', | 228 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/InvalidationService.aidl', |
227 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/ListenerService.aidl', | 229 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/ListenerService.aidl', |
228 'src/java/com/google/ipc/invalidation/testing/android/InvalidationTe
st.aidl', | 230 'src/java/com/google/ipc/invalidation/testing/android/InvalidationTe
st.aidl', |
229 ], | 231 ], |
230 'includes': [ '../../build/java_aidl.gypi' ], | 232 'includes': [ '../../build/java_aidl.gypi' ], |
231 }, | 233 }, |
232 ], | 234 ], |
233 }], | 235 }], |
234 ], | 236 ], |
235 } | 237 } |
OLD | NEW |