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

Side by Side Diff: chrome/chrome_common.gypi

Issue 396463004: Implement NetworkingPrivateCrypto for OpenSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase across gyp/gn changes. Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 '../apps/app_shim/app_shim_launch.h', 9 '../apps/app_shim/app_shim_launch.h',
10 '../apps/app_shim/app_shim_messages.h', 10 '../apps/app_shim/app_shim_messages.h',
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'common/service_process_util.h', 266 'common/service_process_util.h',
267 'common/service_process_util_linux.cc', 267 'common/service_process_util_linux.cc',
268 'common/service_process_util_mac.mm', 268 'common/service_process_util_mac.mm',
269 'common/service_process_util_posix.cc', 269 'common/service_process_util_posix.cc',
270 'common/service_process_util_posix.h', 270 'common/service_process_util_posix.h',
271 'common/service_process_util_win.cc', 271 'common/service_process_util_win.cc',
272 ], 272 ],
273 'chrome_common_win_mac_sources': [ 273 'chrome_common_win_mac_sources': [
274 'common/extensions/api/networking_private/networking_private_crypto_nss.cc ', 274 'common/extensions/api/networking_private/networking_private_crypto_nss.cc ',
275 'common/extensions/api/networking_private/networking_private_crypto_openss l.cc', 275 'common/extensions/api/networking_private/networking_private_crypto_openss l.cc',
276 'common/extensions/api/networking_private/networking_private_crypto.cc',
276 'common/extensions/api/networking_private/networking_private_crypto.h', 277 'common/extensions/api/networking_private/networking_private_crypto.h',
277 'common/media_galleries/itunes_library.cc', 278 'common/media_galleries/itunes_library.cc',
278 'common/media_galleries/itunes_library.h', 279 'common/media_galleries/itunes_library.h',
279 'common/media_galleries/picasa_types.cc', 280 'common/media_galleries/picasa_types.cc',
280 'common/media_galleries/picasa_types.h', 281 'common/media_galleries/picasa_types.h',
281 'common/media_galleries/pmp_constants.h', 282 'common/media_galleries/pmp_constants.h',
282 ], 283 ],
283 'chrome_common_mac_sources': [ 284 'chrome_common_mac_sources': [
284 'common/media_galleries/iphoto_library.cc', 285 'common/media_galleries/iphoto_library.cc',
285 'common/media_galleries/iphoto_library.h', 286 'common/media_galleries/iphoto_library.h',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 ['enable_extensions==1', { 349 ['enable_extensions==1', {
349 'sources': [ '<@(chrome_common_extensions_sources)' ], 350 'sources': [ '<@(chrome_common_extensions_sources)' ],
350 'dependencies': [ 351 'dependencies': [
351 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 352 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
352 '../device/usb/usb.gyp:device_usb', 353 '../device/usb/usb.gyp:device_usb',
353 ], 354 ],
354 }], 355 }],
355 ['OS=="win" or OS=="mac"', { 356 ['OS=="win" or OS=="mac"', {
356 'sources': [ '<@(chrome_common_win_mac_sources)' ], 357 'sources': [ '<@(chrome_common_win_mac_sources)' ],
357 }], 358 }],
359 ['(OS=="win" or OS=="mac") and use_openssl==1', {
360 # networking_private_crypto_openssl.cc depends on boringssl.
361 'dependencies': [
362 '../third_party/boringssl/boringssl.gyp:boringssl',
363 ],
364 }],
358 ['OS=="mac"', { 365 ['OS=="mac"', {
359 'sources': [ '<@(chrome_common_mac_sources)' ], 366 'sources': [ '<@(chrome_common_mac_sources)' ],
360 }], 367 }],
361 ['OS != "ios"', { 368 ['OS != "ios"', {
362 'dependencies': [ 369 'dependencies': [
363 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', 370 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api',
364 '<(DEPTH)/components/components.gyp:autofill_core_common', 371 '<(DEPTH)/components/components.gyp:autofill_core_common',
365 '<(DEPTH)/components/components.gyp:autofill_content_common', 372 '<(DEPTH)/components/components.gyp:autofill_content_common',
366 '<(DEPTH)/components/components.gyp:password_manager_core_common', 373 '<(DEPTH)/components/components.gyp:password_manager_core_common',
367 '<(DEPTH)/components/components.gyp:signin_core_common', 374 '<(DEPTH)/components/components.gyp:signin_core_common',
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 'common/safe_browsing/csd.proto' 693 'common/safe_browsing/csd.proto'
687 ], 694 ],
688 'variables': { 695 'variables': {
689 'proto_in_dir': 'common/safe_browsing', 696 'proto_in_dir': 'common/safe_browsing',
690 'proto_out_dir': 'chrome/common/safe_browsing', 697 'proto_out_dir': 'chrome/common/safe_browsing',
691 }, 698 },
692 'includes': [ '../build/protoc.gypi' ], 699 'includes': [ '../build/protoc.gypi' ],
693 }, 700 },
694 ], 701 ],
695 } 702 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698