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 2103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2114 ['OS != "ios"', { | 2114 ['OS != "ios"', { |
2115 'dependencies': [ | 2115 'dependencies': [ |
2116 'autofill_regexes', | 2116 'autofill_regexes', |
2117 'browser_extensions', | 2117 'browser_extensions', |
2118 'browser/performance_monitor/performance_monitor.gyp:performance_mon
itor', | 2118 'browser/performance_monitor/performance_monitor.gyp:performance_mon
itor', |
2119 'common/extensions/api/api.gyp:api', | 2119 'common/extensions/api/api.gyp:api', |
2120 'debugger', | 2120 'debugger', |
2121 'installer_util', | 2121 'installer_util', |
2122 '../device/device.gyp:device_bluetooth', | 2122 '../device/device.gyp:device_bluetooth', |
2123 '../net/net.gyp:net_with_v8', | 2123 '../net/net.gyp:net_with_v8', |
2124 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin | |
2125 '../printing/printing.gyp:printing', | 2124 '../printing/printing.gyp:printing', |
2126 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', | 2125 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', |
2127 '../third_party/expat/expat.gyp:expat', | 2126 '../third_party/expat/expat.gyp:expat', |
2128 '../third_party/hunspell/hunspell.gyp:hunspell', | 2127 '../third_party/hunspell/hunspell.gyp:hunspell', |
2129 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 2128 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
2130 '../third_party/libjingle/libjingle.gyp:libjingle', | 2129 '../third_party/libjingle/libjingle.gyp:libjingle', |
2131 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', | 2130 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', |
2132 '../third_party/npapi/npapi.gyp:npapi', | 2131 '../third_party/npapi/npapi.gyp:npapi', |
2133 '../third_party/re2/re2.gyp:re2', | 2132 '../third_party/re2/re2.gyp:re2', |
2134 '../ui/compositor/compositor.gyp:compositor', | 2133 '../ui/compositor/compositor.gyp:compositor', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2204 ['configuration_policy==1', { | 2203 ['configuration_policy==1', { |
2205 'dependencies': [ | 2204 'dependencies': [ |
2206 'app/policy/cloud_policy_codegen.gyp:policy', | 2205 'app/policy/cloud_policy_codegen.gyp:policy', |
2207 ], | 2206 ], |
2208 }, { # configuration_policy==0 | 2207 }, { # configuration_policy==0 |
2209 'sources/': [ | 2208 'sources/': [ |
2210 ['exclude', 'browser/ui/webui/policy_ui.cc'], | 2209 ['exclude', 'browser/ui/webui/policy_ui.cc'], |
2211 ['exclude', 'browser/ui/webui/policy_ui.h'], | 2210 ['exclude', 'browser/ui/webui/policy_ui.h'], |
2212 ], | 2211 ], |
2213 }], | 2212 }], |
| 2213 ['enable_ppapi==1', { |
| 2214 'dependencies': [ |
| 2215 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin |
| 2216 ], |
| 2217 }], |
2214 ['safe_browsing==1', { | 2218 ['safe_browsing==1', { |
2215 'defines': [ | 2219 'defines': [ |
2216 'ENABLE_SAFE_BROWSING', | 2220 'ENABLE_SAFE_BROWSING', |
2217 ], | 2221 ], |
2218 }, { # safe_browsing==0 | 2222 }, { # safe_browsing==0 |
2219 'dependencies!': [ | 2223 'dependencies!': [ |
2220 'safe_browsing_proto', | 2224 'safe_browsing_proto', |
2221 'safe_browsing_report_proto', | 2225 'safe_browsing_report_proto', |
2222 '../third_party/libusb/libusb.gyp:libusb', | 2226 '../third_party/libusb/libusb.gyp:libusb', |
2223 ], | 2227 ], |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2753 }, { # else: enable_app_list==0 | 2757 }, { # else: enable_app_list==0 |
2754 'sources/': [ | 2758 'sources/': [ |
2755 ['exclude', '^browser/ui/views/app_list/'], | 2759 ['exclude', '^browser/ui/views/app_list/'], |
2756 ['exclude', '^browser/ui/app_list/'], | 2760 ['exclude', '^browser/ui/app_list/'], |
2757 ] | 2761 ] |
2758 }], | 2762 }], |
2759 ], | 2763 ], |
2760 }, | 2764 }, |
2761 ], | 2765 ], |
2762 } | 2766 } |
OLD | NEW |