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