| OLD | NEW |
| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 'sources!': [ | 506 'sources!': [ |
| 507 'common/media/webrtc_logging_messages.h', | 507 'common/media/webrtc_logging_messages.h', |
| 508 ] | 508 ] |
| 509 }], | 509 }], |
| 510 ['configuration_policy==1', { | 510 ['configuration_policy==1', { |
| 511 'dependencies': [ | 511 'dependencies': [ |
| 512 '<(DEPTH)/components/components.gyp:policy', | 512 '<(DEPTH)/components/components.gyp:policy', |
| 513 ], | 513 ], |
| 514 }], | 514 }], |
| 515 ['safe_browsing==1', { | 515 ['safe_browsing==1', { |
| 516 'defines': [ 'FULL_SAFE_BROWSING' ], | |
| 517 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ], | 516 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ], |
| 518 }], | 517 }], |
| 519 ['safe_browsing==2', { | |
| 520 'defines': [ 'MOBILE_SAFE_BROWSING' ], | |
| 521 }], | |
| 522 ['use_openssl==1', { | 518 ['use_openssl==1', { |
| 523 'sources!': [ | 519 'sources!': [ |
| 524 'common/extensions/api/networking_private/networking_private_crypto
_nss.cc', | 520 'common/extensions/api/networking_private/networking_private_crypto
_nss.cc', |
| 525 ], | 521 ], |
| 526 }, | 522 }, |
| 527 { # else !use_openssl | 523 { # else !use_openssl |
| 528 'sources!': [ | 524 'sources!': [ |
| 529 'common/extensions/api/networking_private/networking_private_crypto
_openssl.cc', | 525 'common/extensions/api/networking_private/networking_private_crypto
_openssl.cc', |
| 530 ], | 526 ], |
| 531 }, | 527 }, |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 'common/safe_browsing/csd.proto' | 692 'common/safe_browsing/csd.proto' |
| 697 ], | 693 ], |
| 698 'variables': { | 694 'variables': { |
| 699 'proto_in_dir': 'common/safe_browsing', | 695 'proto_in_dir': 'common/safe_browsing', |
| 700 'proto_out_dir': 'chrome/common/safe_browsing', | 696 'proto_out_dir': 'chrome/common/safe_browsing', |
| 701 }, | 697 }, |
| 702 'includes': [ '../build/protoc.gypi' ], | 698 'includes': [ '../build/protoc.gypi' ], |
| 703 }, | 699 }, |
| 704 ], | 700 ], |
| 705 } | 701 } |
| OLD | NEW |