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, |
10 }, | 11 }, |
11 'targets': [ | 12 'targets': [ |
12 # The C++ files generated from the cache invalidation protocol buffers. | 13 # The C++ files generated from the cache invalidation protocol buffers. |
13 { | 14 { |
14 'target_name': 'cacheinvalidation_proto_cpp', | 15 'target_name': 'cacheinvalidation_proto_cpp', |
15 'type': 'static_library', | 16 'type': 'static_library', |
16 'variables': { | 17 'variables': { |
17 # The relative path of the cacheinvalidation proto files from this | 18 # The relative path of the cacheinvalidation proto files from this |
18 # gyp-file. | 19 # gyp-file. |
19 # TODO(akalin): Add a RULE_INPUT_DIR predefined variable to gyp so | 20 # TODO(akalin): Add a RULE_INPUT_DIR predefined variable to gyp so |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/InvalidationService.aidl', | 226 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/InvalidationService.aidl', |
226 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/ListenerService.aidl', | 227 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/ListenerService.aidl', |
227 'src/java/com/google/ipc/invalidation/testing/android/InvalidationTe
st.aidl', | 228 'src/java/com/google/ipc/invalidation/testing/android/InvalidationTe
st.aidl', |
228 ], | 229 ], |
229 'includes': [ '../../build/java_aidl.gypi' ], | 230 'includes': [ '../../build/java_aidl.gypi' ], |
230 }, | 231 }, |
231 ], | 232 ], |
232 }], | 233 }], |
233 ], | 234 ], |
234 } | 235 } |
OLD | NEW |