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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 8344001: OpenBSD patches for chrome/content, split from CR #8275005 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: add comment Created 9 years, 2 months 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 4255 matching lines...) Expand 10 before | Expand all | Expand 10 after
4266 'dependencies': [ 4266 'dependencies': [
4267 '../build/linux/system.gyp:dbus', 4267 '../build/linux/system.gyp:dbus',
4268 '../build/linux/system.gyp:gconf', 4268 '../build/linux/system.gyp:gconf',
4269 '../build/linux/system.gyp:gtk', 4269 '../build/linux/system.gyp:gtk',
4270 '../build/linux/system.gyp:gtkprint', 4270 '../build/linux/system.gyp:gtkprint',
4271 '../build/linux/system.gyp:ssl', 4271 '../build/linux/system.gyp:ssl',
4272 '../build/linux/system.gyp:x11', 4272 '../build/linux/system.gyp:x11',
4273 '../dbus/dbus.gyp:dbus', 4273 '../dbus/dbus.gyp:dbus',
4274 '../third_party/undoview/undoview.gyp:undoview', 4274 '../third_party/undoview/undoview.gyp:undoview',
4275 ], 4275 ],
4276 'link_settings': {
4277 'libraries': [
4278 # For dlsym() in 'browser/zygote_main_linux.cc'
4279 '-ldl',
4280 ],
4281 },
4282 'sources!': [ 4276 'sources!': [
4283 'browser/ui/views/extensions/extension_view.cc', 4277 'browser/ui/views/extensions/extension_view.cc',
4284 'browser/ui/views/extensions/extension_view.h', 4278 'browser/ui/views/extensions/extension_view.h',
4285 ], 4279 ],
4286 'sources': [ 4280 'sources': [
4287 'browser/first_run/upgrade_util.cc', 4281 'browser/first_run/upgrade_util.cc',
4288 'browser/first_run/upgrade_util.h', 4282 'browser/first_run/upgrade_util.h',
4289 ], 4283 ],
4290 'conditions': [ 4284 'conditions': [
4285 ['OS=="linux"', {
4286 'link_settings': {
4287 'libraries': [
4288 # For dlsym() in 'browser/zygote_main_linux.cc'
4289 '-ldl',
4290 ],
4291 },
4292 }],
4291 ['use_gnome_keyring==1', { 4293 ['use_gnome_keyring==1', {
4292 'dependencies': [ 4294 'dependencies': [
4293 '../build/linux/system.gyp:gnome_keyring', 4295 '../build/linux/system.gyp:gnome_keyring',
4294 ], 4296 ],
4295 }], 4297 }],
4296 ], 4298 ],
4297 }], 4299 }],
4298 ['OS=="mac"', { 4300 ['OS=="mac"', {
4299 'sources!': [ 4301 'sources!': [
4300 'browser/automation/automation_provider_list_generic.cc', 4302 'browser/automation/automation_provider_list_generic.cc',
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
5185 'type': 'static_library', 5187 'type': 'static_library',
5186 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5188 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5187 'variables': { 5189 'variables': {
5188 'proto_in_dir': 'browser/history', 5190 'proto_in_dir': 'browser/history',
5189 'proto_out_dir': 'chrome/browser/history', 5191 'proto_out_dir': 'chrome/browser/history',
5190 }, 5192 },
5191 'includes': [ '../build/protoc.gypi' ] 5193 'includes': [ '../build/protoc.gypi' ]
5192 }, 5194 },
5193 ], 5195 ],
5194 } 5196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698