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 'variables' : { | 5 'variables' : { |
6 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
(...skipping 2176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2187 ['input_speech==0', { | 2187 ['input_speech==0', { |
2188 'sources/': [ | 2188 'sources/': [ |
2189 ['exclude', '^browser/speech/'], | 2189 ['exclude', '^browser/speech/'], |
2190 ], | 2190 ], |
2191 }], | 2191 }], |
2192 ['notifications==0', { | 2192 ['notifications==0', { |
2193 'sources/': [ | 2193 'sources/': [ |
2194 ['exclude', '^browser/notifications/'], | 2194 ['exclude', '^browser/notifications/'], |
2195 ], | 2195 ], |
2196 }], | 2196 }], |
| 2197 ['enable_web_intents==0', { |
| 2198 'sources/': [ |
| 2199 ['exclude', '^browser/intents'], |
| 2200 ['exclude', '^browser/ui/intents'], |
| 2201 ], |
| 2202 }], |
2197 ['safe_browsing==1', { | 2203 ['safe_browsing==1', { |
2198 'defines': [ | 2204 'defines': [ |
2199 'ENABLE_SAFE_BROWSING', | 2205 'ENABLE_SAFE_BROWSING', |
2200 ], | 2206 ], |
2201 }, { # safe_browsing == 0 | 2207 }, { # safe_browsing == 0 |
2202 'sources!': [ | 2208 'sources!': [ |
2203 'browser/download/download_safe_browsing_client_unittest.cc', | 2209 'browser/download/download_safe_browsing_client_unittest.cc', |
2204 ], | 2210 ], |
2205 'sources/': [ | 2211 'sources/': [ |
2206 ['exclude', '^browser/safe_browsing/'], | 2212 ['exclude', '^browser/safe_browsing/'], |
(...skipping 2516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4723 # Use outputs of this action as inputs for the main target build. | 4729 # Use outputs of this action as inputs for the main target build. |
4724 # Seems as a misnomer but makes this happy on Linux (scons). | 4730 # Seems as a misnomer but makes this happy on Linux (scons). |
4725 'process_outputs_as_sources': 1, | 4731 'process_outputs_as_sources': 1, |
4726 }, | 4732 }, |
4727 ], # 'actions' | 4733 ], # 'actions' |
4728 }, | 4734 }, |
4729 ] | 4735 ] |
4730 }], # 'coverage!=0' | 4736 }], # 'coverage!=0' |
4731 ], # 'conditions' | 4737 ], # 'conditions' |
4732 } | 4738 } |
OLD | NEW |