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

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: everything works Created 9 years, 1 month 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
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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 }, 546 },
547 }, 547 },
548 'configurations': { 548 'configurations': {
549 'Common_Base': { 549 'Common_Base': {
550 'msvs_target_platform': 'x64', 550 'msvs_target_platform': 'x64',
551 }, 551 },
552 }, 552 },
553 }, 553 },
554 ], 554 ],
555 }], 555 }],
556 ['OS == "linux" and use_gnome_keyring == 1', {
557 'targets': [
558 {
559 'target_name': 'chrome-keyring-proxy',
560 'type': 'executable',
561 'sources': [
562 'browser/password_manager/proxy/chrome_keyring_proxy.cc',
563 'browser/password_manager/proxy/chrome_keyring_proxy_main.cc',
564 'browser/password_manager/proxy/keyring_loader.cc',
565 'browser/password_manager/proxy/message_reader.cc',
566 ],
567 'dependencies': [
568 '../build/linux/system.gyp:gnome_keyring',
569 '../build/linux/system.gyp:gtk',
570 ],
571 'include_dirs': [
572 '..',
573 ],
574 },
575 ],
576 }],
556 ], 577 ],
557 } 578 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698