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

Side by Side Diff: content/content.gyp

Issue 10384153: Adding protobuf headers that will be used by upcoming continuous speech recognition classes (Speech… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed and moved content_protobuf.gypi. Created 8 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 }, 9 },
10 'includes': [ 10 'includes': [
11 '../build/win_precompile.gypi', 11 '../build/win_precompile.gypi',
12 'browser/speech/proto/speech_proto.gypi',
jam 2012/05/15 21:17:01 why do you need to include this in both content.gy
Primiano Tucci (use gerrit) 2012/05/16 08:43:39 The file is included only in content.gyp. The spee
hans 2012/05/16 10:42:47 Maybe speech_proto.gypi should actually be speec_p
Primiano Tucci (use gerrit) 2012/05/16 13:34:19 Nice! Seems to work requiring no edits to content.
12 'content_shell.gypi', 13 'content_shell.gypi',
13 'content_tests.gypi', 14 'content_tests.gypi',
14 ], 15 ],
15 'target_defaults': { 16 'target_defaults': {
16 'defines': ['CONTENT_IMPLEMENTATION'], 17 'defines': ['CONTENT_IMPLEMENTATION'],
17 }, 18 },
18 'conditions': [ 19 'conditions': [
19 # In component mode, we build all of content as a single DLL. 20 # In component mode, we build all of content as a single DLL.
20 # However, in the static mode, we need to build content as multiple 21 # However, in the static mode, we need to build content as multiple
21 # targets in order to prevent dependencies from getting introduced 22 # targets in order to prevent dependencies from getting introduced
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 }, 212 },
212 { 213 {
213 'target_name': 'content_jni_headers', 214 'target_name': 'content_jni_headers',
214 'type': 'none', 215 'type': 'none',
215 'includes': [ 'content_jni.gypi' ], 216 'includes': [ 'content_jni.gypi' ],
216 }, 217 },
217 ], 218 ],
218 }], # OS == "android" 219 }], # OS == "android"
219 ], 220 ],
220 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698