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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 23868020: Fix remaining shared_library link_settings propagation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_browser_ui.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', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 2678 matching lines...) Expand 10 before | Expand all | Expand 10 after
2689 'browser/media_galleries/fileapi/safe_picasa_albums_indexer.h', 2689 'browser/media_galleries/fileapi/safe_picasa_albums_indexer.h',
2690 ], 2690 ],
2691 }], 2691 }],
2692 ['OS=="mac"', { 2692 ['OS=="mac"', {
2693 'sources': [ 2693 'sources': [
2694 'browser/media_galleries/fileapi/iphoto_data_provider.cc', 2694 'browser/media_galleries/fileapi/iphoto_data_provider.cc',
2695 'browser/media_galleries/fileapi/iphoto_data_provider.h', 2695 'browser/media_galleries/fileapi/iphoto_data_provider.h',
2696 'browser/media_galleries/fileapi/iphoto_file_util.cc', 2696 'browser/media_galleries/fileapi/iphoto_file_util.cc',
2697 'browser/media_galleries/fileapi/iphoto_file_util.h', 2697 'browser/media_galleries/fileapi/iphoto_file_util.h',
2698 ], 2698 ],
2699 'link_settings': {
2700 'libraries': [
2701 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework',
2702 ],
2703 },
2699 }], 2704 }],
2700 ['enable_extensions==1', { 2705 ['enable_extensions==1', {
2701 'sources': [ 2706 'sources': [
2702 # Only extension API implementations should go here. 2707 # Only extension API implementations should go here.
2703 'browser/accessibility/accessibility_extension_api.cc', 2708 'browser/accessibility/accessibility_extension_api.cc',
2704 'browser/accessibility/accessibility_extension_api.h', 2709 'browser/accessibility/accessibility_extension_api.h',
2705 'browser/infobars/infobar_extension_api.cc', 2710 'browser/infobars/infobar_extension_api.cc',
2706 'browser/infobars/infobar_extension_api.h', 2711 'browser/infobars/infobar_extension_api.h',
2707 'browser/speech/extension_api/tts_extension_api.cc', 2712 'browser/speech/extension_api/tts_extension_api.cc',
2708 'browser/speech/extension_api/tts_extension_api.h', 2713 'browser/speech/extension_api/tts_extension_api.h',
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
3307 ['exclude', '^browser/importer/'], 3312 ['exclude', '^browser/importer/'],
3308 ['exclude', '^browser/media_galleries/'], 3313 ['exclude', '^browser/media_galleries/'],
3309 ['exclude', '^browser/net/firefox_*'], 3314 ['exclude', '^browser/net/firefox_*'],
3310 ['exclude', '^browser/profile_resetter/'], 3315 ['exclude', '^browser/profile_resetter/'],
3311 ['exclude', '^browser/service/'], 3316 ['exclude', '^browser/service/'],
3312 ['exclude', '^browser/sync/glue/app_'], 3317 ['exclude', '^browser/sync/glue/app_'],
3313 ['exclude', '^browser/sync/glue/extension_'], 3318 ['exclude', '^browser/sync/glue/extension_'],
3314 ['exclude', '^browser/sync/glue/theme_'], 3319 ['exclude', '^browser/sync/glue/theme_'],
3315 ['exclude', '^browser/usb/'], 3320 ['exclude', '^browser/usb/'],
3316 ], 3321 ],
3322 'link_settings': {
3323 'libraries': [
3324 '-llog',
3325 ],
3326 },
3317 }], 3327 }],
3318 ['OS=="mac"', { 3328 ['OS=="mac"', {
3319 'sources!': [ 3329 'sources!': [
3320 'browser/automation/automation_provider_list_generic.cc', 3330 'browser/automation/automation_provider_list_generic.cc',
3321 'browser/first_run/upgrade_util.cc', 3331 'browser/first_run/upgrade_util.cc',
3322 'browser/jankometer.cc', 3332 'browser/jankometer.cc',
3323 'browser/lifetime/application_lifetime_stub.cc', 3333 'browser/lifetime/application_lifetime_stub.cc',
3324 'browser/password_manager/login_database_posix.cc', 3334 'browser/password_manager/login_database_posix.cc',
3325 'browser/tab_contents/spellchecker_submenu_observer_hunspell.cc', 3335 'browser/tab_contents/spellchecker_submenu_observer_hunspell.cc',
3326 ], 3336 ],
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
3691 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3701 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3692 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3702 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3693 }, 3703 },
3694 'includes': [ '../build/android/java_cpp_template.gypi' ], 3704 'includes': [ '../build/android/java_cpp_template.gypi' ],
3695 }, 3705 },
3696 ], 3706 ],
3697 }, 3707 },
3698 ], 3708 ],
3699 ], 3709 ],
3700 } 3710 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698