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/variations.gypi

Issue 668863002: [Clean up] Move VariationsHttpHeaderProvider into a subdirectory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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
« no previous file with comments | « components/suggestions/suggestions_service.cc ('k') | components/variations/BUILD.gn » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/variations 8 # GN version: //components/variations
9 'target_name': 'variations', 9 'target_name': 'variations',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'includes': [ '../build/protoc.gypi' ], 55 'includes': [ '../build/protoc.gypi' ],
56 'conditions': [ 56 'conditions': [
57 ['OS == "android"', { 57 ['OS == "android"', {
58 'dependencies': [ 58 'dependencies': [
59 'variations_jni_headers', 59 'variations_jni_headers',
60 ], 60 ],
61 }], 61 }],
62 ], 62 ],
63 }, 63 },
64 { 64 {
65 # GN version: //components/variations_http_provider 65 # GN version: //components/variations/net/variations_http_provider
66 'target_name': 'variations_http_provider', 66 'target_name': 'variations_http_provider',
67 'type': 'static_library', 67 'type': 'static_library',
68 'include_dirs': [ 68 'include_dirs': [
69 '..', 69 '..',
70 ], 70 ],
71 'dependencies': [ 71 'dependencies': [
72 '../base/base.gyp:base', 72 '../base/base.gyp:base',
73 'components.gyp:google_core_browser', 73 'components.gyp:google_core_browser',
74 'variations', 74 'variations',
75 ], 75 ],
76 'sources': [ 76 'sources': [
77 'variations/variations_http_header_provider.cc', 77 'variations/net/variations_http_header_provider.cc',
78 'variations/variations_http_header_provider.h', 78 'variations/net/variations_http_header_provider.h',
79 ], 79 ],
80 }, 80 },
81 ], 81 ],
82 'conditions': [ 82 'conditions': [
83 ['OS=="android"', { 83 ['OS=="android"', {
84 'targets': [ 84 'targets': [
85 { 85 {
86 # GN version: //components/variations/android:variations_java 86 # GN version: //components/variations/android:variations_java
87 'target_name': 'variations_java', 87 'target_name': 'variations_java',
88 'type': 'none', 88 'type': 'none',
(...skipping 14 matching lines...) Expand all
103 ], 103 ],
104 'variables': { 104 'variables': {
105 'jni_gen_package': 'variations', 105 'jni_gen_package': 'variations',
106 }, 106 },
107 'includes': [ '../build/jni_generator.gypi' ], 107 'includes': [ '../build/jni_generator.gypi' ],
108 }, 108 },
109 ], 109 ],
110 }], 110 }],
111 ] 111 ]
112 } 112 }
OLDNEW
« no previous file with comments | « components/suggestions/suggestions_service.cc ('k') | components/variations/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698