| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'browser_ui', | 8 'target_name': 'browser_ui', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 2208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2219 }, { # configuration_policy==0 | 2219 }, { # configuration_policy==0 |
| 2220 'sources/': [ | 2220 'sources/': [ |
| 2221 ['exclude', 'browser/ui/webui/policy_ui.cc'], | 2221 ['exclude', 'browser/ui/webui/policy_ui.cc'], |
| 2222 ['exclude', 'browser/ui/webui/policy_ui.h'], | 2222 ['exclude', 'browser/ui/webui/policy_ui.h'], |
| 2223 ], | 2223 ], |
| 2224 }], | 2224 }], |
| 2225 ['enable_plugins==1', { | 2225 ['enable_plugins==1', { |
| 2226 'dependencies': [ | 2226 'dependencies': [ |
| 2227 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | 2227 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 2228 ], | 2228 ], |
| 2229 }, { # enable_plugins == 0 |
| 2230 'sources!': [ |
| 2231 'browser/ui/hung_plugin_tab_helper.cc', |
| 2232 'browser/ui/hung_plugin_tab_helper.h', |
| 2233 ], |
| 2229 }], | 2234 }], |
| 2230 ['safe_browsing==1', { | 2235 ['safe_browsing==1', { |
| 2231 'defines': [ | 2236 'defines': [ |
| 2232 'FULL_SAFE_BROWSING', | 2237 'FULL_SAFE_BROWSING', |
| 2233 ], | 2238 ], |
| 2234 }, { # safe_browsing==0 || safe_browsing==2 | 2239 }, { # safe_browsing==0 || safe_browsing==2 |
| 2235 'dependencies!': [ | 2240 'dependencies!': [ |
| 2236 'safe_browsing_proto', | 2241 'safe_browsing_proto', |
| 2237 'safe_browsing_report_proto', | 2242 'safe_browsing_report_proto', |
| 2238 '../third_party/libusb/libusb.gyp:libusb', | 2243 '../third_party/libusb/libusb.gyp:libusb', |
| (...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2769 }, { # else: enable_app_list==0 | 2774 }, { # else: enable_app_list==0 |
| 2770 'sources/': [ | 2775 'sources/': [ |
| 2771 ['exclude', '^browser/ui/views/app_list/'], | 2776 ['exclude', '^browser/ui/views/app_list/'], |
| 2772 ['exclude', '^browser/ui/app_list/'], | 2777 ['exclude', '^browser/ui/app_list/'], |
| 2773 ] | 2778 ] |
| 2774 }], | 2779 }], |
| 2775 ], | 2780 ], |
| 2776 }, | 2781 }, |
| 2777 ], | 2782 ], |
| 2778 } | 2783 } |
| OLD | NEW |