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

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: 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 4252 matching lines...) Expand 10 before | Expand all | Expand 10 after
4263 'dependencies': [ 4263 'dependencies': [
4264 '../build/linux/system.gyp:dbus', 4264 '../build/linux/system.gyp:dbus',
4265 '../build/linux/system.gyp:gconf', 4265 '../build/linux/system.gyp:gconf',
4266 '../build/linux/system.gyp:gtk', 4266 '../build/linux/system.gyp:gtk',
4267 '../build/linux/system.gyp:gtkprint', 4267 '../build/linux/system.gyp:gtkprint',
4268 '../build/linux/system.gyp:ssl', 4268 '../build/linux/system.gyp:ssl',
4269 '../build/linux/system.gyp:x11', 4269 '../build/linux/system.gyp:x11',
4270 '../dbus/dbus.gyp:dbus', 4270 '../dbus/dbus.gyp:dbus',
4271 '../third_party/undoview/undoview.gyp:undoview', 4271 '../third_party/undoview/undoview.gyp:undoview',
4272 ], 4272 ],
4273 'link_settings': {
4274 'libraries': [
4275 # For dlsym() in 'browser/zygote_main_linux.cc'
4276 '-ldl',
4277 ],
4278 },
4279 'sources!': [ 4273 'sources!': [
4280 'browser/ui/views/extensions/extension_view.cc', 4274 'browser/ui/views/extensions/extension_view.cc',
4281 'browser/ui/views/extensions/extension_view.h', 4275 'browser/ui/views/extensions/extension_view.h',
4282 ], 4276 ],
4283 'sources': [ 4277 'sources': [
4284 'browser/first_run/upgrade_util.cc', 4278 'browser/first_run/upgrade_util.cc',
4285 'browser/first_run/upgrade_util.h', 4279 'browser/first_run/upgrade_util.h',
4286 ], 4280 ],
4287 'conditions': [ 4281 'conditions': [
4282 ['OS=="linux"', {
4283 'link_settings': {
4284 'libraries': [
4285 # For dlsym() in 'browser/zygote_main_linux.cc'
4286 '-ldl',
4287 ],
4288 },
4289 }],
4288 ['use_gnome_keyring==1', { 4290 ['use_gnome_keyring==1', {
4289 'dependencies': [ 4291 'dependencies': [
4290 '../build/linux/system.gyp:gnome_keyring', 4292 '../build/linux/system.gyp:gnome_keyring',
4291 ], 4293 ],
4292 }], 4294 }],
4293 ], 4295 ],
4294 }], 4296 }],
4295 ['OS=="mac"', { 4297 ['OS=="mac"', {
4296 'sources!': [ 4298 'sources!': [
4297 'browser/automation/automation_provider_list_generic.cc', 4299 'browser/automation/automation_provider_list_generic.cc',
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
5182 'type': 'static_library', 5184 'type': 'static_library',
5183 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5185 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5184 'variables': { 5186 'variables': {
5185 'proto_in_dir': 'browser/history', 5187 'proto_in_dir': 'browser/history',
5186 'proto_out_dir': 'chrome/browser/history', 5188 'proto_out_dir': 'chrome/browser/history',
5187 }, 5189 },
5188 'includes': [ '../build/protoc.gypi' ] 5190 'includes': [ '../build/protoc.gypi' ]
5189 }, 5191 },
5190 ], 5192 ],
5191 } 5193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698