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

Side by Side Diff: components/gcm_driver.gypi

Issue 290013011: Move all remaining files to gcm_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix per feedback Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « components/components_tests.gyp ('k') | components/gcm_driver/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gcm_driver', 8 'target_name': 'gcm_driver',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'os_crypt',
11 '../base/base.gyp:base', 12 '../base/base.gyp:base',
12 '../google_apis/gcm/gcm.gyp:gcm', 13 '../google_apis/gcm/gcm.gyp:gcm',
13 'os_crypt', 14 '../net/net.gyp:net',
14 ], 15 ],
15 'include_dirs': [ 16 'include_dirs': [
16 '..', 17 '..',
17 ], 18 ],
18 'sources': [ 19 'sources': [
19 'gcm_driver/android/component_jni_registrar.cc', 20 'gcm_driver/android/component_jni_registrar.cc',
20 'gcm_driver/android/component_jni_registrar.h', 21 'gcm_driver/android/component_jni_registrar.h',
21 'gcm_driver/default_gcm_app_handler.cc', 22 'gcm_driver/default_gcm_app_handler.cc',
22 'gcm_driver/default_gcm_app_handler.h', 23 'gcm_driver/default_gcm_app_handler.h',
23 'gcm_driver/gcm_app_handler.h', 24 'gcm_driver/gcm_app_handler.h',
24 'gcm_driver/gcm_client_factory.cc', 25 'gcm_driver/gcm_client_factory.cc',
25 'gcm_driver/gcm_client_factory.h', 26 'gcm_driver/gcm_client_factory.h',
27 'gcm_driver/gcm_driver.cc',
28 'gcm_driver/gcm_driver.h',
26 'gcm_driver/gcm_driver_android.cc', 29 'gcm_driver/gcm_driver_android.cc',
27 'gcm_driver/gcm_driver_android.h', 30 'gcm_driver/gcm_driver_android.h',
28 'gcm_driver/system_encryptor.cc', 31 'gcm_driver/system_encryptor.cc',
29 'gcm_driver/system_encryptor.h', 32 'gcm_driver/system_encryptor.h',
30 ], 33 ],
31 'conditions': [ 34 'conditions': [
32 ['OS == "android"', { 35 ['OS == "android"', {
33 'dependencies': [ 36 'dependencies': [
34 'gcm_driver_jni_headers', 37 'gcm_driver_jni_headers',
35 ], 38 ],
36 }], 39 }],
37 ], 40 ],
38 }, 41 },
42 {
43 'target_name': 'gcm_driver_test_support',
44 'type': 'static_library',
45 'dependencies': [
46 'gcm_driver',
47 '../base/base.gyp:base',
48 '../testing/gtest.gyp:gtest',
49 ],
50 'include_dirs': [
51 '..',
52 ],
53 'sources': [
54 'gcm_driver/fake_gcm_app_handler.cc',
55 'gcm_driver/fake_gcm_app_handler.h',
56 'gcm_driver/fake_gcm_client.cc',
57 'gcm_driver/fake_gcm_client.h',
58 'gcm_driver/fake_gcm_client_factory.cc',
59 'gcm_driver/fake_gcm_client_factory.h',
60 ],
61 },
39 ], 62 ],
40 'conditions': [ 63 'conditions': [
41 ['OS == "android"', { 64 ['OS == "android"', {
42 'targets': [ 65 'targets': [
43 { 66 {
44 'target_name': 'gcm_driver_java', 67 'target_name': 'gcm_driver_java',
45 'type': 'none', 68 'type': 'none',
46 'dependencies': [ 69 'dependencies': [
47 '../base/base.gyp:base', 70 '../base/base.gyp:base',
48 ], 71 ],
(...skipping 11 matching lines...) Expand all
60 'variables': { 83 'variables': {
61 'jni_gen_package': 'components/gcm_driver', 84 'jni_gen_package': 'components/gcm_driver',
62 }, 85 },
63 'includes': [ '../build/jni_generator.gypi' ], 86 'includes': [ '../build/jni_generator.gypi' ],
64 }, 87 },
65 ], 88 ],
66 }, 89 },
67 ], 90 ],
68 ], 91 ],
69 } 92 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/gcm_driver/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698