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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1422573008: Plumbing SSLPrivateKey (//net) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing extra tab. Created 5 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
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 3302 matching lines...) Expand 10 before | Expand all | Expand 10 after
3313 '<(grit_out_dir)/grit/settings_resources_map.cc', 3313 '<(grit_out_dir)/grit/settings_resources_map.cc',
3314 '<(grit_out_dir)/grit/theme_resources_map.cc', 3314 '<(grit_out_dir)/grit/theme_resources_map.cc',
3315 ], 3315 ],
3316 'conditions': [ 3316 'conditions': [
3317 ['toolkit_views==1', { 3317 ['toolkit_views==1', {
3318 'dependencies': [ 3318 'dependencies': [
3319 '../ui/gfx/gfx.gyp:gfx_vector_icons', 3319 '../ui/gfx/gfx.gyp:gfx_vector_icons',
3320 '../ui/views/views.gyp:views' 3320 '../ui/views/views.gyp:views'
3321 ], 3321 ],
3322 }], 3322 }],
3323 ['OS=="android"', {
3324 'dependencies': [
3325 '../third_party/boringssl/boringssl.gyp:boringssl',
davidben 2015/11/04 00:17:38 Is this needed?
svaldez 2015/11/04 16:55:51 Done.
3326 ],
3327 }]
3323 ], 3328 ],
3324 }, { # OS == "ios" 3329 }, { # OS == "ios"
3325 'dependencies': [ 3330 'dependencies': [
3326 '../net/net.gyp:net', 3331 '../net/net.gyp:net',
3327 ], 3332 ],
3328 # A few sources had been brought up for iOS before the decision not to 3333 # A few sources had been brought up for iOS before the decision not to
3329 # use chrome/ for iOS long-term. Keep building them to prevent iOS 3334 # use chrome/ for iOS long-term. Keep building them to prevent iOS
3330 # regressions until they have been componentized. 3335 # regressions until they have been componentized.
3331 'sources': [ 3336 'sources': [
3332 '<@(chrome_browser_ios_sources)', 3337 '<@(chrome_browser_ios_sources)',
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
4118 '../components/components.gyp:omnibox_browser', 4123 '../components/components.gyp:omnibox_browser',
4119 '../components/components.gyp:rlz', 4124 '../components/components.gyp:rlz',
4120 '../components/components.gyp:search_engines', 4125 '../components/components.gyp:search_engines',
4121 '../rlz/rlz.gyp:rlz_lib', 4126 '../rlz/rlz.gyp:rlz_lib',
4122 ], 4127 ],
4123 }, 4128 },
4124 ], 4129 ],
4125 }], 4130 }],
4126 ], 4131 ],
4127 } 4132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698