| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 '../content/content.gyp:content_browser', | 115 '../content/content.gyp:content_browser', |
| 116 ], | 116 ], |
| 117 'include_dirs': [ | 117 'include_dirs': [ |
| 118 '..', | 118 '..', |
| 119 ], | 119 ], |
| 120 'sources': [ | 120 'sources': [ |
| 121 'translate/content/browser/content_translate_driver.cc', | 121 'translate/content/browser/content_translate_driver.cc', |
| 122 'translate/content/browser/content_translate_driver.h', | 122 'translate/content/browser/content_translate_driver.h', |
| 123 ], | 123 ], |
| 124 }, | 124 }, |
| 125 { |
| 126 'target_name': 'translate_content_common', |
| 127 'type': 'static_library', |
| 128 'dependencies': [ |
| 129 'translate_core_common', |
| 130 'translate_language_detection', |
| 131 '../base/base.gyp:base', |
| 132 '../content/content.gyp:content_common', |
| 133 '../ipc/ipc.gyp:ipc', |
| 134 ], |
| 135 'include_dirs': [ |
| 136 '..', |
| 137 ], |
| 138 'sources': [ |
| 139 'translate/content/common/translate_messages.cc', |
| 140 'translate/content/common/translate_messages.h', |
| 141 ], |
| 142 }, |
| 125 ], | 143 ], |
| 126 }], | 144 }], |
| 127 ], | 145 ], |
| 128 } | 146 } |
| OLD | NEW |