| 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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 ['include', '^browser/storage_partition_impl\\.cc$'], | 908 ['include', '^browser/storage_partition_impl\\.cc$'], |
| 909 # Pull in all but one file from speech. | 909 # Pull in all but one file from speech. |
| 910 ['include', '^browser/speech/'], | 910 ['include', '^browser/speech/'], |
| 911 ['exclude', '^browser/speech/input_tag_speech_dispatcher_host\\.cc$$'], | 911 ['exclude', '^browser/speech/input_tag_speech_dispatcher_host\\.cc$$'], |
| 912 ['include', '^browser/user_metrics\\.cc$'], | 912 ['include', '^browser/user_metrics\\.cc$'], |
| 913 ['include', '^browser/web_contents/navigation_entry_impl\\.cc$'], | 913 ['include', '^browser/web_contents/navigation_entry_impl\\.cc$'], |
| 914 ], | 914 ], |
| 915 }, { # OS!="ios" | 915 }, { # OS!="ios" |
| 916 'dependencies': [ | 916 'dependencies': [ |
| 917 'browser/debugger/devtools_resources.gyp:devtools_resources', | 917 'browser/debugger/devtools_resources.gyp:devtools_resources', |
| 918 '../cc/cc.gyp:cc', |
| 918 '../net/net.gyp:http_server', | 919 '../net/net.gyp:http_server', |
| 919 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | 920 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 920 '../printing/printing.gyp:printing', | 921 '../printing/printing.gyp:printing', |
| 921 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 922 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 922 '../third_party/libyuv/libyuv.gyp:libyuv', | 923 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 923 '../ui/surface/surface.gyp:surface', | 924 '../ui/surface/surface.gyp:surface', |
| 924 '../webkit/support/webkit_support.gyp:webkit_resources', | 925 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 925 '../webkit/support/webkit_support.gyp:webkit_storage', | 926 '../webkit/support/webkit_support.gyp:webkit_storage', |
| 926 '../webkit/support/webkit_support.gyp:webkit_strings', | 927 '../webkit/support/webkit_support.gyp:webkit_strings', |
| 927 ], | 928 ], |
| (...skipping 200 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 |