| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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': 'translate_core_browser', | 8 'target_name': 'translate_core_browser', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'translate/core/common/translate_pref_names.h', | 73 'translate/core/common/translate_pref_names.h', |
| 74 'translate/core/common/translate_switches.cc', | 74 'translate/core/common/translate_switches.cc', |
| 75 'translate/core/common/translate_switches.h', | 75 'translate/core/common/translate_switches.h', |
| 76 'translate/core/common/translate_util.cc', | 76 'translate/core/common/translate_util.cc', |
| 77 'translate/core/common/translate_util.h', | 77 'translate/core/common/translate_util.h', |
| 78 'translate/core/common/language_detection_details.cc', | 78 'translate/core/common/language_detection_details.cc', |
| 79 'translate/core/common/language_detection_details.h', | 79 'translate/core/common/language_detection_details.h', |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 { | 82 { |
| 83 'target_name': 'translate_language_detection', | 83 'target_name': 'translate_core_language_detection', |
| 84 'type': 'static_library', | 84 'type': 'static_library', |
| 85 'dependencies': [ | 85 'dependencies': [ |
| 86 'translate_core_common', | 86 'translate_core_common', |
| 87 '../base/base.gyp:base', | 87 '../base/base.gyp:base', |
| 88 '../url/url.gyp:url_lib', | 88 '../url/url.gyp:url_lib', |
| 89 ], | 89 ], |
| 90 'include_dirs': [ | 90 'include_dirs': [ |
| 91 '..', | 91 '..', |
| 92 ], | 92 ], |
| 93 'sources': [ | 93 'sources': [ |
| 94 'translate/language_detection/language_detection_util.cc', | 94 'translate/core/language_detection/language_detection_util.cc', |
| 95 'translate/language_detection/language_detection_util.h', | 95 'translate/core/language_detection/language_detection_util.h', |
| 96 ], | 96 ], |
| 97 'conditions': [ | 97 'conditions': [ |
| 98 ['cld_version==0 or cld_version==1', { | 98 ['cld_version==0 or cld_version==1', { |
| 99 'dependencies': [ | 99 'dependencies': [ |
| 100 '<(DEPTH)/third_party/cld/cld.gyp:cld', | 100 '<(DEPTH)/third_party/cld/cld.gyp:cld', |
| 101 ], | 101 ], |
| 102 }], | 102 }], |
| 103 ['cld_version==0 or cld_version==2', { | 103 ['cld_version==0 or cld_version==2', { |
| 104 'dependencies': [ | 104 'dependencies': [ |
| 105 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2', | 105 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 125 'sources': [ | 125 'sources': [ |
| 126 'translate/content/browser/content_translate_driver.cc', | 126 'translate/content/browser/content_translate_driver.cc', |
| 127 'translate/content/browser/content_translate_driver.h', | 127 'translate/content/browser/content_translate_driver.h', |
| 128 ], | 128 ], |
| 129 }, | 129 }, |
| 130 { | 130 { |
| 131 'target_name': 'translate_content_common', | 131 'target_name': 'translate_content_common', |
| 132 'type': 'static_library', | 132 'type': 'static_library', |
| 133 'dependencies': [ | 133 'dependencies': [ |
| 134 'translate_core_common', | 134 'translate_core_common', |
| 135 'translate_language_detection', | 135 'translate_core_language_detection', |
| 136 '../base/base.gyp:base', | 136 '../base/base.gyp:base', |
| 137 '../content/content.gyp:content_common', | 137 '../content/content.gyp:content_common', |
| 138 '../ipc/ipc.gyp:ipc', | 138 '../ipc/ipc.gyp:ipc', |
| 139 ], | 139 ], |
| 140 'include_dirs': [ | 140 'include_dirs': [ |
| 141 '..', | 141 '..', |
| 142 ], | 142 ], |
| 143 'sources': [ | 143 'sources': [ |
| 144 'translate/content/common/translate_messages.cc', | 144 'translate/content/common/translate_messages.cc', |
| 145 'translate/content/common/translate_messages.h', | 145 'translate/content/common/translate_messages.h', |
| 146 ], | 146 ], |
| 147 }, | 147 }, |
| 148 ], | 148 ], |
| 149 }], | 149 }], |
| 150 ], | 150 ], |
| 151 } | 151 } |
| OLD | NEW |