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

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: Addressed Jay's comments and 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
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 2105 matching lines...) Expand 10 before | Expand all | Expand 10 after
2116 ['OS != "ios"', { 2116 ['OS != "ios"', {
2117 'dependencies': [ 2117 'dependencies': [
2118 'autofill_regexes', 2118 'autofill_regexes',
2119 'browser_extensions', 2119 'browser_extensions',
2120 'browser/performance_monitor/performance_monitor.gyp:performance_mon itor', 2120 'browser/performance_monitor/performance_monitor.gyp:performance_mon itor',
2121 'common/extensions/api/api.gyp:api', 2121 'common/extensions/api/api.gyp:api',
2122 'debugger', 2122 'debugger',
2123 'installer_util', 2123 'installer_util',
2124 '../device/device.gyp:device_bluetooth', 2124 '../device/device.gyp:device_bluetooth',
2125 '../net/net.gyp:net_with_v8', 2125 '../net/net.gyp:net_with_v8',
2126 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin
2127 '../printing/printing.gyp:printing', 2126 '../printing/printing.gyp:printing',
2128 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', 2127 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h',
2129 '../third_party/expat/expat.gyp:expat', 2128 '../third_party/expat/expat.gyp:expat',
2130 '../third_party/hunspell/hunspell.gyp:hunspell', 2129 '../third_party/hunspell/hunspell.gyp:hunspell',
2131 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 2130 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
2132 '../third_party/libjingle/libjingle.gyp:libjingle', 2131 '../third_party/libjingle/libjingle.gyp:libjingle',
2133 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 2132 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
2134 '../third_party/npapi/npapi.gyp:npapi', 2133 '../third_party/npapi/npapi.gyp:npapi',
2135 '../third_party/re2/re2.gyp:re2', 2134 '../third_party/re2/re2.gyp:re2',
2136 '../ui/compositor/compositor.gyp:compositor', 2135 '../ui/compositor/compositor.gyp:compositor',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
2206 ['configuration_policy==1', { 2205 ['configuration_policy==1', {
2207 'dependencies': [ 2206 'dependencies': [
2208 'app/policy/cloud_policy_codegen.gyp:policy', 2207 'app/policy/cloud_policy_codegen.gyp:policy',
2209 ], 2208 ],
2210 }, { # configuration_policy==0 2209 }, { # configuration_policy==0
2211 'sources/': [ 2210 'sources/': [
2212 ['exclude', 'browser/ui/webui/policy_ui.cc'], 2211 ['exclude', 'browser/ui/webui/policy_ui.cc'],
2213 ['exclude', 'browser/ui/webui/policy_ui.h'], 2212 ['exclude', 'browser/ui/webui/policy_ui.h'],
2214 ], 2213 ],
2215 }], 2214 }],
2215 ['enable_ppapi==1', {
2216 'dependencies': [
2217 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin
brettw 2012/11/30 23:18:12 Ditto
nilesh 2012/12/01 00:41:35 Done.
2218 ],
2219 }],
2216 ['safe_browsing==1', { 2220 ['safe_browsing==1', {
2217 'defines': [ 2221 'defines': [
2218 'FULL_SAFE_BROWSING', 2222 'FULL_SAFE_BROWSING',
2219 ], 2223 ],
2220 }, { # safe_browsing==0 || safe_browsing==2 2224 }, { # safe_browsing==0 || safe_browsing==2
2221 'dependencies!': [ 2225 'dependencies!': [
2222 'safe_browsing_proto', 2226 'safe_browsing_proto',
2223 'safe_browsing_report_proto', 2227 'safe_browsing_report_proto',
2224 '../third_party/libusb/libusb.gyp:libusb', 2228 '../third_party/libusb/libusb.gyp:libusb',
2225 ], 2229 ],
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
2755 }, { # else: enable_app_list==0 2759 }, { # else: enable_app_list==0
2756 'sources/': [ 2760 'sources/': [
2757 ['exclude', '^browser/ui/views/app_list/'], 2761 ['exclude', '^browser/ui/views/app_list/'],
2758 ['exclude', '^browser/ui/app_list/'], 2762 ['exclude', '^browser/ui/app_list/'],
2759 ] 2763 ]
2760 }], 2764 }],
2761 ], 2765 ],
2762 }, 2766 },
2763 ], 2767 ],
2764 } 2768 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698