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

Side by Side Diff: content/content_browser.gypi

Issue 11365025: Make cc a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win?? Created 8 years, 1 month 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 'conditions': [ 7 'conditions': [
8 ['chromeos==1', { 8 ['chromeos==1', {
9 'use_libgps%': 1, 9 'use_libgps%': 1,
10 }, { # chromeos==0 10 }, { # chromeos==0
11 # Do not use libgps on desktop Linux by default, 11 # Do not use libgps on desktop Linux by default,
12 # see http://crbug.com/103751. 12 # see http://crbug.com/103751.
13 'use_libgps%': 0, 13 'use_libgps%': 0,
14 }], 14 }],
15 ], 15 ],
16 }, 16 },
17 'dependencies': [ 17 'dependencies': [
18 'browser/speech/proto/speech_proto.gyp:speech_proto', 18 'browser/speech/proto/speech_proto.gyp:speech_proto',
19 '../base/base.gyp:base_static', 19 '../base/base.gyp:base_static',
20 '../cc/cc.gyp:cc',
20 '../crypto/crypto.gyp:crypto', 21 '../crypto/crypto.gyp:crypto',
21 '../google_apis/google_apis.gyp:google_apis', 22 '../google_apis/google_apis.gyp:google_apis',
22 '../net/net.gyp:net', 23 '../net/net.gyp:net',
23 '../skia/skia.gyp:skia', 24 '../skia/skia.gyp:skia',
24 '../third_party/zlib/zlib.gyp:zlib', 25 '../third_party/zlib/zlib.gyp:zlib',
25 '../ui/ui.gyp:ui', 26 '../ui/ui.gyp:ui',
26 '../ui/ui.gyp:ui_resources', 27 '../ui/ui.gyp:ui_resources',
27 ], 28 ],
28 'include_dirs': [ 29 'include_dirs': [
29 '..', 30 '..',
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 # the USE_LIBGPS setting propagates to the "real" dependent target, 1129 # the USE_LIBGPS setting propagates to the "real" dependent target,
1129 # we use all_dependent_settings here. 1130 # we use all_dependent_settings here.
1130 'all_dependent_settings': { 1131 'all_dependent_settings': {
1131 'defines': [ 1132 'defines': [
1132 'USE_LIBGPS', 1133 'USE_LIBGPS',
1133 ], 1134 ],
1134 }, 1135 },
1135 }], 1136 }],
1136 ], 1137 ],
1137 } 1138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698