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

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: fix test ordering dependency Created 9 years 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 }, 550 },
551 }, 551 },
552 'configurations': { 552 'configurations': {
553 'Common_Base': { 553 'Common_Base': {
554 'msvs_target_platform': 'x64', 554 'msvs_target_platform': 'x64',
555 }, 555 },
556 }, 556 },
557 }, 557 },
558 ], 558 ],
559 }], 559 }],
560 ['OS == "linux" and use_gnome_keyring == 1', {
561 'targets': [
562 {
563 'target_name': 'chrome-keyring-proxy',
564 'type': 'executable',
565 'sources': [
566 'browser/password_manager/keyring_proxy/gnome_keyring_loader.cc',
567 'browser/password_manager/keyring_proxy/keyring_proxy.cc',
568 'browser/password_manager/keyring_proxy/keyring_proxy_main.cc',
569 'browser/password_manager/keyring_proxy/message_reader.cc',
570 ],
571 'dependencies': [
572 '../build/linux/system.gyp:gnome_keyring',
573 '../build/linux/system.gyp:gtk',
574 ],
575 'include_dirs': [
576 '..',
577 ],
578 },
579 ],
580 }],
560 ], 581 ],
561 } 582 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698