| 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 |
| (...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 ['exclude', '^browser/renderer_host/render_widget_host_view_aura.h'], | 1126 ['exclude', '^browser/renderer_host/render_widget_host_view_aura.h'], |
| 1127 ['exclude', '^browser/renderer_host/tap_suppression_controller_aura.cc']
, | 1127 ['exclude', '^browser/renderer_host/tap_suppression_controller_aura.cc']
, |
| 1128 ], | 1128 ], |
| 1129 }], | 1129 }], |
| 1130 ['enable_plugins==1', { | 1130 ['enable_plugins==1', { |
| 1131 'dependencies': [ | 1131 'dependencies': [ |
| 1132 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | 1132 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 1133 ], | 1133 ], |
| 1134 }, { # enable_plugins==0 | 1134 }, { # enable_plugins==0 |
| 1135 'sources!': [ | 1135 'sources!': [ |
| 1136 'browser/plugin_data_remover_impl.cc', |
| 1137 'browser/plugin_data_remover_impl.h', |
| 1136 'browser/ppapi_plugin_process_host.cc', | 1138 'browser/ppapi_plugin_process_host.cc', |
| 1137 ], | 1139 ], |
| 1138 'sources/': [ | 1140 'sources/': [ |
| 1139 ['exclude', '^browser/renderer_host/pepper/'], | 1141 ['exclude', '^browser/renderer_host/pepper/'], |
| 1140 ], | 1142 ], |
| 1141 }], | 1143 }], |
| 1142 ['java_bridge==1', { | 1144 ['java_bridge==1', { |
| 1143 'defines': [ | 1145 'defines': [ |
| 1144 'ENABLE_JAVA_BRIDGE', | 1146 'ENABLE_JAVA_BRIDGE', |
| 1145 ], | 1147 ], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1162 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1164 # the USE_LIBGPS setting propagates to the "real" dependent target, |
| 1163 # we use all_dependent_settings here. | 1165 # we use all_dependent_settings here. |
| 1164 'all_dependent_settings': { | 1166 'all_dependent_settings': { |
| 1165 'defines': [ | 1167 'defines': [ |
| 1166 'USE_LIBGPS', | 1168 'USE_LIBGPS', |
| 1167 ], | 1169 ], |
| 1168 }, | 1170 }, |
| 1169 }], | 1171 }], |
| 1170 ], | 1172 ], |
| 1171 } | 1173 } |
| OLD | NEW |