| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |