Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: components/translate.gypi

Issue 131463002: Move TranslateURLFetcher to the translate component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix translate.gypi for real Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/translate/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/page_translated_details.h', 20 'translate/core/browser/page_translated_details.h',
21 'translate/core/browser/translate_browser_metrics.cc', 21 'translate/core/browser/translate_browser_metrics.cc',
22 'translate/core/browser/translate_browser_metrics.h', 22 'translate/core/browser/translate_browser_metrics.h',
23 'translate/core/browser/translate_delegate.h',
23 'translate/core/browser/translate_error_details.h', 24 'translate/core/browser/translate_error_details.h',
24 'translate/core/browser/translate_event_details.cc', 25 'translate/core/browser/translate_event_details.cc',
25 'translate/core/browser/translate_event_details.h', 26 'translate/core/browser/translate_event_details.h',
27 'translate/core/browser/translate_url_fetcher.cc',
28 'translate/core/browser/translate_url_fetcher.h',
26 ], 29 ],
27 }, 30 },
28 { 31 {
29 'target_name': 'translate_core_common', 32 'target_name': 'translate_core_common',
30 'type': 'static_library', 33 'type': 'static_library',
31 'dependencies': [ 34 'dependencies': [
32 '../base/base.gyp:base', 35 '../base/base.gyp:base',
33 '../url/url.gyp:url_lib', 36 '../url/url.gyp:url_lib',
34 ], 37 ],
35 'include_dirs': [ 38 'include_dirs': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 }], 75 }],
73 ['cld_version==0 or cld_version==2', { 76 ['cld_version==0 or cld_version==2', {
74 'dependencies': [ 77 'dependencies': [
75 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2', 78 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2',
76 ], 79 ],
77 }], 80 }],
78 ], 81 ],
79 }, 82 },
80 ], 83 ],
81 } 84 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/translate/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698