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 3303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3314 ['safe_browsing != 0', { | 3314 ['safe_browsing != 0', { |
3315 'sources': [ '<@(chrome_browser_safe_browsing_basic_sources)' ], | 3315 'sources': [ '<@(chrome_browser_safe_browsing_basic_sources)' ], |
3316 'dependencies': [ | 3316 'dependencies': [ |
3317 'safe_browsing_chunk_proto', | 3317 'safe_browsing_chunk_proto', |
3318 'safe_browsing_metadata_proto', | 3318 'safe_browsing_metadata_proto', |
3319 'safe_browsing_report_proto', | 3319 'safe_browsing_report_proto', |
3320 ], | 3320 ], |
3321 'conditions': [ | 3321 'conditions': [ |
3322 ['safe_browsing == 1', { | 3322 ['safe_browsing == 1', { |
3323 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], | 3323 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], |
3324 'defines': [ | |
3325 'FULL_SAFE_BROWSING', | |
3326 ], | |
3327 'dependencies': [ | 3324 'dependencies': [ |
3328 'safe_browsing_proto', | 3325 'safe_browsing_proto', |
3329 ], | 3326 ], |
3330 }], | 3327 }], |
3331 ['safe_browsing == 2', { | |
3332 'defines': [ | |
3333 'MOBILE_SAFE_BROWSING', | |
3334 ], | |
3335 }], | |
3336 ], | 3328 ], |
3337 }], | 3329 }], |
3338 ['use_udev == 1', { | 3330 ['use_udev == 1', { |
3339 'dependencies': [ | 3331 'dependencies': [ |
3340 '../device/udev_linux/udev.gyp:udev_linux', | 3332 '../device/udev_linux/udev.gyp:udev_linux', |
3341 ], | 3333 ], |
3342 }], | 3334 }], |
3343 ['OS=="linux"', { | 3335 ['OS=="linux"', { |
3344 'dependencies': [ | 3336 'dependencies': [ |
3345 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f
ile_entry_proto', | 3337 '../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... |
3836 'variables': { | 3828 'variables': { |
3837 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3829 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3838 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3830 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3839 }, | 3831 }, |
3840 'includes': [ '../build/protoc.gypi' ] | 3832 'includes': [ '../build/protoc.gypi' ] |
3841 }, | 3833 }, |
3842 ], | 3834 ], |
3843 },], | 3835 },], |
3844 ], | 3836 ], |
3845 } | 3837 } |
OLD | NEW |