| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 # GN version: //components/variations/service | 89 # GN version: //components/variations/service |
| 90 'target_name': 'variations_service', | 90 'target_name': 'variations_service', |
| 91 | 91 |
| 92 # TODO(blundell): Change to static_library once it has code in it. | 92 # TODO(blundell): Change to static_library once it has code in it. |
| 93 'type': 'none', | 93 'type': 'none', |
| 94 'include_dirs': [ | 94 'include_dirs': [ |
| 95 '..', | 95 '..', |
| 96 ], | 96 ], |
| 97 'dependencies': [ | 97 'dependencies': [ |
| 98 '../base/base.gyp:base', | 98 '../base/base.gyp:base', |
| 99 'version_info', |
| 99 ], | 100 ], |
| 100 'sources': [ | 101 'sources': [ |
| 101 'variations/service/variations_service_client.h', | 102 'variations/service/variations_service_client.h', |
| 102 ], | 103 ], |
| 103 }, | 104 }, |
| 104 { | 105 { |
| 105 # GN version: //components/variations/net:net | 106 # GN version: //components/variations/net:net |
| 106 'target_name': 'variations_http_provider', | 107 'target_name': 'variations_http_provider', |
| 107 'type': 'static_library', | 108 'type': 'static_library', |
| 108 'include_dirs': [ | 109 'include_dirs': [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 ], | 150 ], |
| 150 'variables': { | 151 'variables': { |
| 151 'jni_gen_package': 'variations', | 152 'jni_gen_package': 'variations', |
| 152 }, | 153 }, |
| 153 'includes': [ '../build/jni_generator.gypi' ], | 154 'includes': [ '../build/jni_generator.gypi' ], |
| 154 }, | 155 }, |
| 155 ], | 156 ], |
| 156 }], | 157 }], |
| 157 ] | 158 ] |
| 158 } | 159 } |
| OLD | NEW |