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

Side by Side Diff: chrome/chrome_common.gypi

Issue 397853002: Refactor safe-browsing build-config definitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup gn files 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
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 'chrome_common_sources': [ 7 'chrome_common_sources': [
8 '../apps/app_shim/app_shim_launch.h', 8 '../apps/app_shim/app_shim_launch.h',
9 '../apps/app_shim/app_shim_messages.h', 9 '../apps/app_shim/app_shim_messages.h',
10 'common/all_messages.h', 10 'common/all_messages.h',
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 'sources!': [ 499 'sources!': [
500 'common/media/webrtc_logging_messages.h', 500 'common/media/webrtc_logging_messages.h',
501 ] 501 ]
502 }], 502 }],
503 ['configuration_policy==1', { 503 ['configuration_policy==1', {
504 'dependencies': [ 504 'dependencies': [
505 '<(DEPTH)/components/components.gyp:policy', 505 '<(DEPTH)/components/components.gyp:policy',
506 ], 506 ],
507 }], 507 }],
508 ['safe_browsing==1', { 508 ['safe_browsing==1', {
509 'defines': [ 'FULL_SAFE_BROWSING' ],
510 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ], 509 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ],
511 }], 510 }],
512 ['safe_browsing==2', {
513 'defines': [ 'MOBILE_SAFE_BROWSING' ],
514 }],
515 ['use_openssl==1', { 511 ['use_openssl==1', {
516 'sources!': [ 512 'sources!': [
517 'common/extensions/api/networking_private/networking_private_crypto _nss.cc', 513 'common/extensions/api/networking_private/networking_private_crypto _nss.cc',
518 ], 514 ],
519 }, 515 },
520 { # else !use_openssl 516 { # else !use_openssl
521 'sources!': [ 517 'sources!': [
522 'common/extensions/api/networking_private/networking_private_crypto _openssl.cc', 518 'common/extensions/api/networking_private/networking_private_crypto _openssl.cc',
523 ], 519 ],
524 }, 520 },
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 'common/safe_browsing/csd.proto' 684 'common/safe_browsing/csd.proto'
689 ], 685 ],
690 'variables': { 686 'variables': {
691 'proto_in_dir': 'common/safe_browsing', 687 'proto_in_dir': 'common/safe_browsing',
692 'proto_out_dir': 'chrome/common/safe_browsing', 688 'proto_out_dir': 'chrome/common/safe_browsing',
693 }, 689 },
694 'includes': [ '../build/protoc.gypi' ], 690 'includes': [ '../build/protoc.gypi' ],
695 }, 691 },
696 ], 692 ],
697 } 693 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698