| 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': [ |
| 11 'language_usage_metrics', | 11 'language_usage_metrics', |
| 12 'translate_core_common', | 12 'translate_core_common', |
| 13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
| 14 '../url/url.gyp:url_lib', | 14 '../url/url.gyp:url_lib', |
| 15 ], | 15 ], |
| 16 'include_dirs': [ | 16 'include_dirs': [ |
| 17 '..', | 17 '..', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'translate/core/browser/language_state.cc', | 20 'translate/core/browser/language_state.cc', |
| 21 'translate/core/browser/language_state.h', | 21 'translate/core/browser/language_state.h', |
| 22 'translate/core/browser/page_translated_details.h', | 22 'translate/core/browser/page_translated_details.h', |
| 23 'translate/core/browser/translate_browser_metrics.cc', | 23 'translate/core/browser/translate_browser_metrics.cc', |
| 24 'translate/core/browser/translate_browser_metrics.h', | 24 'translate/core/browser/translate_browser_metrics.h', |
| 25 'translate/core/browser/translate_delegate.h', | 25 'translate/core/browser/translate_download_manager.cc', |
| 26 'translate/core/browser/translate_download_manager.h', |
| 26 'translate/core/browser/translate_driver.h', | 27 'translate/core/browser/translate_driver.h', |
| 27 'translate/core/browser/translate_error_details.h', | 28 'translate/core/browser/translate_error_details.h', |
| 28 'translate/core/browser/translate_event_details.cc', | 29 'translate/core/browser/translate_event_details.cc', |
| 29 'translate/core/browser/translate_event_details.h', | 30 'translate/core/browser/translate_event_details.h', |
| 30 'translate/core/browser/translate_url_fetcher.cc', | 31 'translate/core/browser/translate_url_fetcher.cc', |
| 31 'translate/core/browser/translate_url_fetcher.h', | 32 'translate/core/browser/translate_url_fetcher.h', |
| 32 ], | 33 ], |
| 33 }, | 34 }, |
| 34 { | 35 { |
| 35 'target_name': 'translate_core_common', | 36 'target_name': 'translate_core_common', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ], | 101 ], |
| 101 'sources': [ | 102 'sources': [ |
| 102 'translate/content/browser/content_translate_driver.cc', | 103 'translate/content/browser/content_translate_driver.cc', |
| 103 'translate/content/browser/content_translate_driver.h', | 104 'translate/content/browser/content_translate_driver.h', |
| 104 ], | 105 ], |
| 105 }, | 106 }, |
| 106 ], | 107 ], |
| 107 }], | 108 }], |
| 108 ], | 109 ], |
| 109 } | 110 } |
| OLD | NEW |