| OLD | NEW |
| 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 3313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3324 ['safe_browsing != 0', { | 3324 ['safe_browsing != 0', { |
| 3325 'sources': [ '<@(chrome_browser_safe_browsing_basic_sources)' ], | 3325 'sources': [ '<@(chrome_browser_safe_browsing_basic_sources)' ], |
| 3326 'dependencies': [ | 3326 'dependencies': [ |
| 3327 'safe_browsing_chunk_proto', | 3327 'safe_browsing_chunk_proto', |
| 3328 'safe_browsing_metadata_proto', | 3328 'safe_browsing_metadata_proto', |
| 3329 'safe_browsing_report_proto', | 3329 'safe_browsing_report_proto', |
| 3330 ], | 3330 ], |
| 3331 'conditions': [ | 3331 'conditions': [ |
| 3332 ['safe_browsing == 1', { | 3332 ['safe_browsing == 1', { |
| 3333 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], | 3333 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], |
| 3334 'defines': [ | |
| 3335 'FULL_SAFE_BROWSING', | |
| 3336 ], | |
| 3337 'dependencies': [ | 3334 'dependencies': [ |
| 3338 'safe_browsing_proto', | 3335 'safe_browsing_proto', |
| 3339 ], | 3336 ], |
| 3340 }], | 3337 }], |
| 3341 ['safe_browsing == 2', { | |
| 3342 'defines': [ | |
| 3343 'MOBILE_SAFE_BROWSING', | |
| 3344 ], | |
| 3345 }], | |
| 3346 ], | 3338 ], |
| 3347 }], | 3339 }], |
| 3348 ['use_udev == 1', { | 3340 ['use_udev == 1', { |
| 3349 'dependencies': [ | 3341 'dependencies': [ |
| 3350 '../device/udev_linux/udev.gyp:udev_linux', | 3342 '../device/udev_linux/udev.gyp:udev_linux', |
| 3351 ], | 3343 ], |
| 3352 }], | 3344 }], |
| 3353 ['OS=="linux"', { | 3345 ['OS=="linux"', { |
| 3354 'dependencies': [ | 3346 'dependencies': [ |
| 3355 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f
ile_entry_proto', | 3347 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f
ile_entry_proto', |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3846 'variables': { | 3838 'variables': { |
| 3847 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3839 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
| 3848 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3840 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
| 3849 }, | 3841 }, |
| 3850 'includes': [ '../build/protoc.gypi' ] | 3842 'includes': [ '../build/protoc.gypi' ] |
| 3851 }, | 3843 }, |
| 3852 ], | 3844 ], |
| 3853 },], | 3845 },], |
| 3854 ], | 3846 ], |
| 3855 } | 3847 } |
| OLD | NEW |