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 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2047 ['input_speech==0', { | 2047 ['input_speech==0', { |
2048 'sources/': [ | 2048 'sources/': [ |
2049 ['exclude', '^browser/speech/'], | 2049 ['exclude', '^browser/speech/'], |
2050 ], | 2050 ], |
2051 }], | 2051 }], |
2052 ['notifications==0', { | 2052 ['notifications==0', { |
2053 'sources/': [ | 2053 'sources/': [ |
2054 ['exclude', '^browser/notifications/'], | 2054 ['exclude', '^browser/notifications/'], |
2055 ], | 2055 ], |
2056 }], | 2056 }], |
2057 ['enable_web_intents==0', { | |
2058 'sources/': [ | |
2059 ['exclude', '^browser/intents'], | |
2060 ['exclude', '^browser/ui/intents'], | |
2061 ], | |
2062 }], | |
2063 ['safe_browsing==1', { | 2057 ['safe_browsing==1', { |
2064 'defines': [ | 2058 'defines': [ |
2065 'ENABLE_SAFE_BROWSING', | 2059 'ENABLE_SAFE_BROWSING', |
2066 ], | 2060 ], |
2067 }, { # safe_browsing == 0 | 2061 }, { # safe_browsing == 0 |
2068 'sources!': [ | 2062 'sources!': [ |
2069 'browser/download/download_safe_browsing_client_unittest.cc', | 2063 'browser/download/download_safe_browsing_client_unittest.cc', |
2070 ], | 2064 ], |
2071 'sources/': [ | 2065 'sources/': [ |
2072 ['exclude', '^browser/safe_browsing/'], | 2066 ['exclude', '^browser/safe_browsing/'], |
(...skipping 2548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4621 # Use outputs of this action as inputs for the main target build. | 4615 # Use outputs of this action as inputs for the main target build. |
4622 # Seems as a misnomer but makes this happy on Linux (scons). | 4616 # Seems as a misnomer but makes this happy on Linux (scons). |
4623 'process_outputs_as_sources': 1, | 4617 'process_outputs_as_sources': 1, |
4624 }, | 4618 }, |
4625 ], # 'actions' | 4619 ], # 'actions' |
4626 }, | 4620 }, |
4627 ] | 4621 ] |
4628 }], # 'coverage!=0' | 4622 }], # 'coverage!=0' |
4629 ], # 'conditions' | 4623 ], # 'conditions' |
4630 } | 4624 } |
OLD | NEW |