Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: components/gcm_driver/instance_id/BUILD.gn

Issue 1829023002: Add fake for InstanceIDWithSubtype.java, in order to re-use unit test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid2jni
Patch Set: Tweaks Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698