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

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 gn dep for unittests Created 4 years, 8 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 3617 matching lines...) Expand 10 before | Expand all | Expand 10 after
3628 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ], 3628 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ],
3629 'dependencies': [ 3629 'dependencies': [
3630 '../build/linux/system.gyp:gnome_keyring', 3630 '../build/linux/system.gyp:gnome_keyring',
3631 ], 3631 ],
3632 }], 3632 }],
3633 ['OS=="linux" and chromeos!=1', { 3633 ['OS=="linux" and chromeos!=1', {
3634 'sources': [ '<@(chrome_browser_libsecret_sources)' ], 3634 'sources': [ '<@(chrome_browser_libsecret_sources)' ],
3635 'defines': [ 3635 'defines': [
3636 'USE_LIBSECRET', 3636 'USE_LIBSECRET',
3637 ], 3637 ],
3638 'cflags' : [
3639 '-I../../third_party/libsecret/'
3640 ],
3638 }], 3641 }],
3639 ['use_aura==1', { 3642 ['use_aura==1', {
3640 'sources': [ '<@(chrome_browser_aura_sources)' ], 3643 'sources': [ '<@(chrome_browser_aura_sources)' ],
3641 'dependencies': [ 3644 'dependencies': [
3642 '../ui/aura/aura.gyp:aura', 3645 '../ui/aura/aura.gyp:aura',
3643 '../ui/compositor/compositor.gyp:compositor', 3646 '../ui/compositor/compositor.gyp:compositor',
3644 '../ui/keyboard/keyboard.gyp:keyboard', 3647 '../ui/keyboard/keyboard.gyp:keyboard',
3645 '../ui/keyboard/keyboard.gyp:keyboard_with_content', 3648 '../ui/keyboard/keyboard.gyp:keyboard_with_content',
3646 ], 3649 ],
3647 }], 3650 }],
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
4221 '../components/components.gyp:rlz', 4224 '../components/components.gyp:rlz',
4222 '../components/components.gyp:search_engines', 4225 '../components/components.gyp:search_engines',
4223 '../rlz/rlz.gyp:rlz_lib', 4226 '../rlz/rlz.gyp:rlz_lib',
4224 'common', 4227 'common',
4225 ], 4228 ],
4226 }, 4229 },
4227 ], 4230 ],
4228 }], 4231 }],
4229 ], 4232 ],
4230 } 4233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698