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

Side by Side Diff: components/translate.gypi

Issue 219963007: Move Translate renderer messages to the Translate component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
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': [
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698