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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1922563002: Created BUILD.gn for libsecret (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed dropped tests and applied recommendations Created 4 years, 7 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
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 'variables': { 6 'variables': {
7 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 3623 matching lines...) Expand 10 before | Expand all | Expand 10 after
3634 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ], 3634 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ],
3635 'dependencies': [ 3635 'dependencies': [
3636 '../build/linux/system.gyp:gnome_keyring', 3636 '../build/linux/system.gyp:gnome_keyring',
3637 ], 3637 ],
3638 }], 3638 }],
3639 ['OS=="linux" and chromeos!=1', { 3639 ['OS=="linux" and chromeos!=1', {
3640 'sources': [ '<@(chrome_browser_libsecret_sources)' ], 3640 'sources': [ '<@(chrome_browser_libsecret_sources)' ],
3641 'defines': [ 3641 'defines': [
3642 'USE_LIBSECRET', 3642 'USE_LIBSECRET',
3643 ], 3643 ],
3644 'include_dirs' : [
3645 '../third_party/libsecret/'
3646 ],
3644 }], 3647 }],
3645 ['use_aura==1', { 3648 ['use_aura==1', {
3646 'sources': [ '<@(chrome_browser_aura_sources)' ], 3649 'sources': [ '<@(chrome_browser_aura_sources)' ],
3647 'dependencies': [ 3650 'dependencies': [
3648 '../ui/aura/aura.gyp:aura', 3651 '../ui/aura/aura.gyp:aura',
3649 '../ui/compositor/compositor.gyp:compositor', 3652 '../ui/compositor/compositor.gyp:compositor',
3650 '../ui/keyboard/keyboard.gyp:keyboard', 3653 '../ui/keyboard/keyboard.gyp:keyboard',
3651 '../ui/keyboard/keyboard.gyp:keyboard_with_content', 3654 '../ui/keyboard/keyboard.gyp:keyboard_with_content',
3652 ], 3655 ],
3653 }], 3656 }],
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
4227 '../components/components.gyp:rlz', 4230 '../components/components.gyp:rlz',
4228 '../components/components.gyp:search_engines', 4231 '../components/components.gyp:search_engines',
4229 '../rlz/rlz.gyp:rlz_lib', 4232 '../rlz/rlz.gyp:rlz_lib',
4230 'common', 4233 'common',
4231 ], 4234 ],
4232 }, 4235 },
4233 ], 4236 ],
4234 }], 4237 }],
4235 ], 4238 ],
4236 } 4239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698