| 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 source_set("instance_id") { | 6 source_set("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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "instance_id_driver_unittest.cc", | 57 "instance_id_driver_unittest.cc", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 deps = [ | 60 deps = [ |
| 61 ":instance_id", | 61 ":instance_id", |
| 62 ":test_support", | 62 ":test_support", |
| 63 "//base", | 63 "//base", |
| 64 "//google_apis/gcm", | 64 "//google_apis/gcm", |
| 65 "//testing/gtest", | 65 "//testing/gtest", |
| 66 ] | 66 ] |
| 67 |
| 68 if (is_android) { |
| 69 deps += [ |
| 70 # Just for NestedMessagePumpAndroid (and NestedSystemMessageHandler). |
| 71 "//content/test:layouttest_support", |
| 72 ] |
| 73 } |
| 67 } | 74 } |
| OLD | NEW |