| 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', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 # List of dependencies is intentionally very minimal. Please avoid | 15 # List of dependencies is intentionally very minimal. Please avoid |
| 16 # adding extra dependencies without first checking with OWNERS. | 16 # adding extra dependencies without first checking with OWNERS. |
| 17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 18 '../base/base.gyp:base_prefs', |
| 18 '../crypto/crypto.gyp:crypto', | 19 '../crypto/crypto.gyp:crypto', |
| 19 '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 20 '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
| 20 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 21 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 21 '../third_party/zlib/google/zip.gyp:compression_utils', | 22 '../third_party/zlib/google/zip.gyp:compression_utils', |
| 22 'crash_core_common', | 23 'crash_core_common', |
| 23 'prefs/prefs.gyp:prefs', | |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 # Note: sources list duplicated in GN build. | 26 # Note: sources list duplicated in GN build. |
| 27 'variations/active_field_trials.cc', | 27 'variations/active_field_trials.cc', |
| 28 'variations/active_field_trials.h', | 28 'variations/active_field_trials.h', |
| 29 'variations/android/component_jni_registrar.cc', | 29 'variations/android/component_jni_registrar.cc', |
| 30 'variations/android/component_jni_registrar.h', | 30 'variations/android/component_jni_registrar.h', |
| 31 'variations/android/variations_associated_data_android.cc', | 31 'variations/android/variations_associated_data_android.cc', |
| 32 'variations/android/variations_associated_data_android.h', | 32 'variations/android/variations_associated_data_android.h', |
| 33 'variations/android/variations_seed_bridge.cc', | 33 'variations/android/variations_seed_bridge.cc', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 # GN version: //components/variations/service | 97 # GN version: //components/variations/service |
| 98 'target_name': 'variations_service', | 98 'target_name': 'variations_service', |
| 99 'type': 'static_library', | 99 'type': 'static_library', |
| 100 'include_dirs': [ | 100 'include_dirs': [ |
| 101 '..', | 101 '..', |
| 102 ], | 102 ], |
| 103 'dependencies': [ | 103 'dependencies': [ |
| 104 '../base/base.gyp:base', | 104 '../base/base.gyp:base', |
| 105 '../base/base.gyp:base_prefs', |
| 105 '../net/net.gyp:net', | 106 '../net/net.gyp:net', |
| 106 '../ui/base/ui_base.gyp:ui_base', | 107 '../ui/base/ui_base.gyp:ui_base', |
| 107 'data_use_measurement_core', | 108 'data_use_measurement_core', |
| 108 'metrics', | 109 'metrics', |
| 109 'network_time', | 110 'network_time', |
| 110 'pref_registry', | 111 'pref_registry', |
| 111 'prefs/prefs.gyp:prefs', | |
| 112 'variations', | 112 'variations', |
| 113 'version_info', | 113 'version_info', |
| 114 'web_resource', | 114 'web_resource', |
| 115 ], | 115 ], |
| 116 'sources': [ | 116 'sources': [ |
| 117 'variations/service/ui_string_overrider.h', | 117 'variations/service/ui_string_overrider.h', |
| 118 'variations/service/ui_string_overrider.cc', | 118 'variations/service/ui_string_overrider.cc', |
| 119 'variations/service/variations_service.cc', | 119 'variations/service/variations_service.cc', |
| 120 'variations/service/variations_service.h', | 120 'variations/service/variations_service.h', |
| 121 'variations/service/variations_service_client.h', | 121 'variations/service/variations_service_client.h', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 ], | 170 ], |
| 171 'variables': { | 171 'variables': { |
| 172 'jni_gen_package': 'variations', | 172 'jni_gen_package': 'variations', |
| 173 }, | 173 }, |
| 174 'includes': [ '../build/jni_generator.gypi' ], | 174 'includes': [ '../build/jni_generator.gypi' ], |
| 175 }, | 175 }, |
| 176 ], | 176 ], |
| 177 }], | 177 }], |
| 178 ] | 178 ] |
| 179 } | 179 } |
| OLD | NEW |