OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |