| 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 '../crypto/crypto.gyp:crypto', | 20 '../crypto/crypto.gyp:crypto', |
| 21 '../google_apis/google_apis.gyp:google_apis', | 21 '../google_apis/google_apis.gyp:google_apis', |
| 22 '../net/net.gyp:net', | 22 '../net/net.gyp:net', |
| 23 '../skia/skia.gyp:skia', | 23 '../skia/skia.gyp:skia', |
| 24 '../third_party/zlib/zlib.gyp:zlib', | 24 '../third_party/zlib/zlib.gyp:zlib', |
| 25 '../ui/snapshot/snapshot.gyp:snapshot', |
| 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 '..', |
| 30 '<(INTERMEDIATE_DIR)', | 31 '<(INTERMEDIATE_DIR)', |
| 31 ], | 32 ], |
| 32 'sources': [ | 33 'sources': [ |
| 33 'port/browser/render_view_host_delegate_view.h', | 34 'port/browser/render_view_host_delegate_view.h', |
| 34 'port/browser/render_widget_host_view_port.h', | 35 'port/browser/render_widget_host_view_port.h', |
| (...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1168 # the USE_LIBGPS setting propagates to the "real" dependent target, |
| 1168 # we use all_dependent_settings here. | 1169 # we use all_dependent_settings here. |
| 1169 'all_dependent_settings': { | 1170 'all_dependent_settings': { |
| 1170 'defines': [ | 1171 'defines': [ |
| 1171 'USE_LIBGPS', | 1172 'USE_LIBGPS', |
| 1172 ], | 1173 ], |
| 1173 }, | 1174 }, |
| 1174 }], | 1175 }], |
| 1175 ], | 1176 ], |
| 1176 } | 1177 } |
| OLD | NEW |