OLD | NEW |
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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'sources': [ | 76 'sources': [ |
77 'variations/variations_http_header_provider.cc', | 77 'variations/variations_http_header_provider.cc', |
78 'variations/variations_http_header_provider.h', | 78 'variations/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 'target_name': 'variations_java', | 87 'target_name': 'variations_java', |
87 'type': 'none', | 88 'type': 'none', |
88 'dependencies': [ | 89 'dependencies': [ |
89 '../base/base.gyp:base', | 90 '../base/base.gyp:base', |
90 ], | 91 ], |
91 'variables': { | 92 'variables': { |
92 'java_in_dir': 'variations/android/java', | 93 'java_in_dir': 'variations/android/java', |
93 }, | 94 }, |
94 'includes': [ '../build/java.gypi' ], | 95 'includes': [ '../build/java.gypi' ], |
95 }, | 96 }, |
96 { | 97 { |
97 # GN version: //components/variations:variations_java | 98 # GN version: //components/variations:jni |
98 'target_name': 'variations_jni_headers', | 99 'target_name': 'variations_jni_headers', |
99 'type': 'none', | 100 'type': 'none', |
100 'sources': [ | 101 'sources': [ |
101 'variations/android/java/src/org/chromium/components/variations/Vari
ationsAssociatedData.java', | 102 'variations/android/java/src/org/chromium/components/variations/Vari
ationsAssociatedData.java', |
102 ], | 103 ], |
103 'variables': { | 104 'variables': { |
104 'jni_gen_package': 'variations', | 105 'jni_gen_package': 'variations', |
105 }, | 106 }, |
106 'includes': [ '../build/jni_generator.gypi' ], | 107 'includes': [ '../build/jni_generator.gypi' ], |
107 }, | 108 }, |
108 ], | 109 ], |
109 }], | 110 }], |
110 ] | 111 ] |
111 } | 112 } |
OLD | NEW |