OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # GYP version: components/gcm_driver.gypi:instance_id_driver | 5 # GYP version: components/gcm_driver.gypi:instance_id_driver |
6 static_library("instance_id") { | 6 static_library("instance_id") { |
7 sources = [ | 7 sources = [ |
8 "android/component_jni_registrar.cc", | 8 "android/component_jni_registrar.cc", |
9 "android/component_jni_registrar.h", | 9 "android/component_jni_registrar.h", |
10 "instance_id.cc", | 10 "instance_id.cc", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 testonly = true | 63 testonly = true |
64 sources = [ | 64 sources = [ |
65 "instance_id_driver_unittest.cc", | 65 "instance_id_driver_unittest.cc", |
66 ] | 66 ] |
67 | 67 |
68 deps = [ | 68 deps = [ |
69 ":instance_id", | 69 ":instance_id", |
70 ":test_support", | 70 ":test_support", |
71 "//base", | 71 "//base", |
72 "//google_apis/gcm", | 72 "//google_apis/gcm", |
| 73 "//net:test_support", |
73 "//testing/gtest", | 74 "//testing/gtest", |
74 ] | 75 ] |
75 } | 76 } |
OLD | NEW |