| 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 'common/all_messages.h', | 9 'common/all_messages.h', |
| 10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 'sources!': [ | 520 'sources!': [ |
| 521 'common/media/webrtc_logging_messages.h', | 521 'common/media/webrtc_logging_messages.h', |
| 522 ] | 522 ] |
| 523 }], | 523 }], |
| 524 ['configuration_policy==1', { | 524 ['configuration_policy==1', { |
| 525 'dependencies': [ | 525 'dependencies': [ |
| 526 '<(DEPTH)/components/components.gyp:policy', | 526 '<(DEPTH)/components/components.gyp:policy', |
| 527 ], | 527 ], |
| 528 }], | 528 }], |
| 529 ['safe_browsing==1', { | 529 ['safe_browsing==1', { |
| 530 'defines': [ 'FULL_SAFE_BROWSING' ], | |
| 531 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ], | 530 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ], |
| 532 }], | 531 }], |
| 533 ['safe_browsing==2', { | |
| 534 'defines': [ 'MOBILE_SAFE_BROWSING' ], | |
| 535 }], | |
| 536 ], | 532 ], |
| 537 'target_conditions': [ | 533 'target_conditions': [ |
| 538 ['OS == "ios"', { | 534 ['OS == "ios"', { |
| 539 'sources/': [ | 535 'sources/': [ |
| 540 # Pull in specific Mac files for iOS (which have been filtered out | 536 # Pull in specific Mac files for iOS (which have been filtered out |
| 541 # by file name rules). | 537 # by file name rules). |
| 542 ['include', '^common/chrome_version_info_mac\\.mm$'], | 538 ['include', '^common/chrome_version_info_mac\\.mm$'], |
| 543 ], | 539 ], |
| 544 }], | 540 }], |
| 545 ], | 541 ], |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 'common/safe_browsing/csd.proto' | 694 'common/safe_browsing/csd.proto' |
| 699 ], | 695 ], |
| 700 'variables': { | 696 'variables': { |
| 701 'proto_in_dir': 'common/safe_browsing', | 697 'proto_in_dir': 'common/safe_browsing', |
| 702 'proto_out_dir': 'chrome/common/safe_browsing', | 698 'proto_out_dir': 'chrome/common/safe_browsing', |
| 703 }, | 699 }, |
| 704 'includes': [ '../build/protoc.gypi' ], | 700 'includes': [ '../build/protoc.gypi' ], |
| 705 }, | 701 }, |
| 706 ], | 702 ], |
| 707 } | 703 } |
| OLD | NEW |