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 2116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2127 ['OS != "ios"', { | 2127 ['OS != "ios"', { |
2128 'dependencies': [ | 2128 'dependencies': [ |
2129 'autofill_regexes', | 2129 'autofill_regexes', |
2130 'browser_extensions', | 2130 'browser_extensions', |
2131 'browser/performance_monitor/performance_monitor.gyp:performance_mon
itor', | 2131 'browser/performance_monitor/performance_monitor.gyp:performance_mon
itor', |
2132 'common/extensions/api/api.gyp:api', | 2132 'common/extensions/api/api.gyp:api', |
2133 'debugger', | 2133 'debugger', |
2134 'installer_util', | 2134 'installer_util', |
2135 '../device/device.gyp:device_bluetooth', | 2135 '../device/device.gyp:device_bluetooth', |
2136 '../net/net.gyp:net_with_v8', | 2136 '../net/net.gyp:net_with_v8', |
2137 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin | |
2138 '../printing/printing.gyp:printing', | 2137 '../printing/printing.gyp:printing', |
2139 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', | 2138 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', |
2140 '../third_party/expat/expat.gyp:expat', | 2139 '../third_party/expat/expat.gyp:expat', |
2141 '../third_party/hunspell/hunspell.gyp:hunspell', | 2140 '../third_party/hunspell/hunspell.gyp:hunspell', |
2142 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 2141 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
2143 '../third_party/libjingle/libjingle.gyp:libjingle', | 2142 '../third_party/libjingle/libjingle.gyp:libjingle', |
2144 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', | 2143 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', |
2145 '../third_party/npapi/npapi.gyp:npapi', | 2144 '../third_party/npapi/npapi.gyp:npapi', |
2146 '../third_party/re2/re2.gyp:re2', | 2145 '../third_party/re2/re2.gyp:re2', |
2147 '../ui/compositor/compositor.gyp:compositor', | 2146 '../ui/compositor/compositor.gyp:compositor', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2217 ['configuration_policy==1', { | 2216 ['configuration_policy==1', { |
2218 'dependencies': [ | 2217 'dependencies': [ |
2219 'app/policy/cloud_policy_codegen.gyp:policy', | 2218 'app/policy/cloud_policy_codegen.gyp:policy', |
2220 ], | 2219 ], |
2221 }, { # configuration_policy==0 | 2220 }, { # configuration_policy==0 |
2222 'sources/': [ | 2221 'sources/': [ |
2223 ['exclude', 'browser/ui/webui/policy_ui.cc'], | 2222 ['exclude', 'browser/ui/webui/policy_ui.cc'], |
2224 ['exclude', 'browser/ui/webui/policy_ui.h'], | 2223 ['exclude', 'browser/ui/webui/policy_ui.h'], |
2225 ], | 2224 ], |
2226 }], | 2225 }], |
| 2226 ['enable_plugins==1', { |
| 2227 'dependencies': [ |
| 2228 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
| 2229 ], |
| 2230 }], |
2227 ['safe_browsing==1', { | 2231 ['safe_browsing==1', { |
2228 'defines': [ | 2232 'defines': [ |
2229 'FULL_SAFE_BROWSING', | 2233 'FULL_SAFE_BROWSING', |
2230 ], | 2234 ], |
2231 }, { # safe_browsing==0 || safe_browsing==2 | 2235 }, { # safe_browsing==0 || safe_browsing==2 |
2232 'dependencies!': [ | 2236 'dependencies!': [ |
2233 'safe_browsing_proto', | 2237 'safe_browsing_proto', |
2234 'safe_browsing_report_proto', | 2238 'safe_browsing_report_proto', |
2235 '../third_party/libusb/libusb.gyp:libusb', | 2239 '../third_party/libusb/libusb.gyp:libusb', |
2236 ], | 2240 ], |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2766 }, { # else: enable_app_list==0 | 2770 }, { # else: enable_app_list==0 |
2767 'sources/': [ | 2771 'sources/': [ |
2768 ['exclude', '^browser/ui/views/app_list/'], | 2772 ['exclude', '^browser/ui/views/app_list/'], |
2769 ['exclude', '^browser/ui/app_list/'], | 2773 ['exclude', '^browser/ui/app_list/'], |
2770 ] | 2774 ] |
2771 }], | 2775 }], |
2772 ], | 2776 ], |
2773 }, | 2777 }, |
2774 ], | 2778 ], |
2775 } | 2779 } |
OLD | NEW |