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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 8509038: Linux: split GNOME Keyring integration into a separate process. Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: merge Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_tests.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 (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': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 }, 560 },
561 }, 561 },
562 'configurations': { 562 'configurations': {
563 'Common_Base': { 563 'Common_Base': {
564 'msvs_target_platform': 'x64', 564 'msvs_target_platform': 'x64',
565 }, 565 },
566 }, 566 },
567 }, 567 },
568 ], 568 ],
569 }], 569 }],
570 ['OS == "linux" and use_gnome_keyring == 1', {
571 'targets': [
572 {
573 'target_name': 'chrome-keyring-proxy',
574 'type': 'executable',
575 'sources': [
576 'browser/password_manager/keyring_proxy/gnome_keyring_loader.cc',
577 'browser/password_manager/keyring_proxy/keyring_proxy.cc',
578 'browser/password_manager/keyring_proxy/keyring_proxy_main.cc',
579 'browser/password_manager/keyring_proxy/message_reader.cc',
580 ],
581 'dependencies': [
582 '../build/linux/system.gyp:gnome_keyring',
583 '../build/linux/system.gyp:gtk',
584 ],
585 'include_dirs': [
586 '..',
587 ],
588 },
589 ],
590 }],
570 ], 591 ],
571 } 592 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698