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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1392713002: Extract content dependency from keyboard code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 2 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 3545 matching lines...) Expand 10 before | Expand all | Expand 10 after
3556 'defines': [ 3556 'defines': [
3557 'USE_LIBSECRET', 3557 'USE_LIBSECRET',
3558 ], 3558 ],
3559 }], 3559 }],
3560 ['use_aura==1', { 3560 ['use_aura==1', {
3561 'sources': [ '<@(chrome_browser_aura_sources)' ], 3561 'sources': [ '<@(chrome_browser_aura_sources)' ],
3562 'dependencies': [ 3562 'dependencies': [
3563 '../ui/aura/aura.gyp:aura', 3563 '../ui/aura/aura.gyp:aura',
3564 '../ui/compositor/compositor.gyp:compositor', 3564 '../ui/compositor/compositor.gyp:compositor',
3565 '../ui/keyboard/keyboard.gyp:keyboard', 3565 '../ui/keyboard/keyboard.gyp:keyboard',
3566 '../ui/keyboard/keyboard.gyp:keyboard_with_content',
3566 ], 3567 ],
3567 }], 3568 }],
3568 ['ui_compositor_image_transport==1', { 3569 ['ui_compositor_image_transport==1', {
3569 'dependencies': [ 3570 'dependencies': [
3570 '../ui/gl/gl.gyp:gl', 3571 '../ui/gl/gl.gyp:gl',
3571 ], 3572 ],
3572 }], 3573 }],
3573 ['use_ash==1', { 3574 ['use_ash==1', {
3574 'sources': [ '<@(chrome_browser_ash_sources)' ], 3575 'sources': [ '<@(chrome_browser_ash_sources)' ],
3575 }], 3576 }],
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
4121 '../components/components.gyp:omnibox_browser', 4122 '../components/components.gyp:omnibox_browser',
4122 '../components/components.gyp:rlz', 4123 '../components/components.gyp:rlz',
4123 '../components/components.gyp:search_engines', 4124 '../components/components.gyp:search_engines',
4124 '../rlz/rlz.gyp:rlz_lib', 4125 '../rlz/rlz.gyp:rlz_lib',
4125 ], 4126 ],
4126 }, 4127 },
4127 ], 4128 ],
4128 }], 4129 }],
4129 ], 4130 ],
4130 } 4131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698