Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 11414180: Add a gyp flag to allow removing dependency on ppapi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2119 matching lines...) Expand 10 before | Expand all | Expand 10 after
2130 ['OS != "ios"', { 2130 ['OS != "ios"', {
2131 'dependencies': [ 2131 'dependencies': [
2132 'autofill_regexes', 2132 'autofill_regexes',
2133 'browser_extensions', 2133 'browser_extensions',
2134 'browser/performance_monitor/performance_monitor.gyp:performance_mon itor', 2134 'browser/performance_monitor/performance_monitor.gyp:performance_mon itor',
2135 'common/extensions/api/api.gyp:api', 2135 'common/extensions/api/api.gyp:api',
2136 'debugger', 2136 'debugger',
2137 'installer_util', 2137 'installer_util',
2138 '../device/device.gyp:device_bluetooth', 2138 '../device/device.gyp:device_bluetooth',
2139 '../net/net.gyp:net_with_v8', 2139 '../net/net.gyp:net_with_v8',
2140 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin
2141 '../printing/printing.gyp:printing', 2140 '../printing/printing.gyp:printing',
2142 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', 2141 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h',
2143 '../third_party/expat/expat.gyp:expat', 2142 '../third_party/expat/expat.gyp:expat',
2144 '../third_party/hunspell/hunspell.gyp:hunspell', 2143 '../third_party/hunspell/hunspell.gyp:hunspell',
2145 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 2144 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
2146 '../third_party/libjingle/libjingle.gyp:libjingle', 2145 '../third_party/libjingle/libjingle.gyp:libjingle',
2147 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 2146 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
2148 '../third_party/npapi/npapi.gyp:npapi', 2147 '../third_party/npapi/npapi.gyp:npapi',
2149 '../third_party/re2/re2.gyp:re2', 2148 '../third_party/re2/re2.gyp:re2',
2150 '../ui/compositor/compositor.gyp:compositor', 2149 '../ui/compositor/compositor.gyp:compositor',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
2220 ['configuration_policy==1', { 2219 ['configuration_policy==1', {
2221 'dependencies': [ 2220 'dependencies': [
2222 'app/policy/cloud_policy_codegen.gyp:policy', 2221 'app/policy/cloud_policy_codegen.gyp:policy',
2223 ], 2222 ],
2224 }, { # configuration_policy==0 2223 }, { # configuration_policy==0
2225 'sources/': [ 2224 'sources/': [
2226 ['exclude', 'browser/ui/webui/policy_ui.cc'], 2225 ['exclude', 'browser/ui/webui/policy_ui.cc'],
2227 ['exclude', 'browser/ui/webui/policy_ui.h'], 2226 ['exclude', 'browser/ui/webui/policy_ui.h'],
2228 ], 2227 ],
2229 }], 2228 }],
2229 ['enable_plugins==1', {
2230 'dependencies': [
2231 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
2232 ],
2233 }],
2230 ['safe_browsing==1', { 2234 ['safe_browsing==1', {
2231 'defines': [ 2235 'defines': [
2232 'FULL_SAFE_BROWSING', 2236 'FULL_SAFE_BROWSING',
2233 ], 2237 ],
2234 }, { # safe_browsing==0 || safe_browsing==2 2238 }, { # safe_browsing==0 || safe_browsing==2
2235 'dependencies!': [ 2239 'dependencies!': [
2236 'safe_browsing_proto', 2240 'safe_browsing_proto',
2237 'safe_browsing_report_proto', 2241 'safe_browsing_report_proto',
2238 '../third_party/libusb/libusb.gyp:libusb', 2242 '../third_party/libusb/libusb.gyp:libusb',
2239 ], 2243 ],
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
2769 }, { # else: enable_app_list==0 2773 }, { # else: enable_app_list==0
2770 'sources/': [ 2774 'sources/': [
2771 ['exclude', '^browser/ui/views/app_list/'], 2775 ['exclude', '^browser/ui/views/app_list/'],
2772 ['exclude', '^browser/ui/app_list/'], 2776 ['exclude', '^browser/ui/app_list/'],
2773 ] 2777 ]
2774 }], 2778 }],
2775 ], 2779 ],
2776 }, 2780 },
2777 ], 2781 ],
2778 } 2782 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698