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 3104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3115 }], | 3115 }], |
3116 ['safe_browsing != 0', { | 3116 ['safe_browsing != 0', { |
3117 'sources': [ '<@(chrome_browser_basic_safe_browsing_sources)' ], | 3117 'sources': [ '<@(chrome_browser_basic_safe_browsing_sources)' ], |
3118 'dependencies': [ | 3118 'dependencies': [ |
3119 'safe_browsing_chunk_proto', | 3119 'safe_browsing_chunk_proto', |
3120 'safe_browsing_report_proto', | 3120 'safe_browsing_report_proto', |
3121 ], | 3121 ], |
3122 'conditions': [ | 3122 'conditions': [ |
3123 ['safe_browsing == 1', { | 3123 ['safe_browsing == 1', { |
3124 'sources': [ '<@(chrome_browser_full_safe_browsing_sources)' ], | 3124 'sources': [ '<@(chrome_browser_full_safe_browsing_sources)' ], |
3125 'defines': [ | |
3126 'FULL_SAFE_BROWSING', | |
3127 ], | |
3128 'dependencies': [ | 3125 'dependencies': [ |
3129 'safe_browsing_proto', | 3126 'safe_browsing_proto', |
3130 ], | 3127 ], |
3131 }], | 3128 }], |
3132 ['safe_browsing == 2', { | |
3133 'defines': [ | |
3134 'MOBILE_SAFE_BROWSING', | |
3135 ], | |
3136 }], | |
3137 ], | 3129 ], |
3138 }], | 3130 }], |
3139 ['OS=="linux"', { | 3131 ['OS=="linux"', { |
3140 'dependencies': [ | 3132 'dependencies': [ |
3141 '../build/linux/system.gyp:udev', | 3133 '../build/linux/system.gyp:udev', |
3142 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f
ile_entry_proto', | 3134 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f
ile_entry_proto', |
3143 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_s
torage_info_proto', | 3135 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_s
torage_info_proto', |
3144 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic
e_media_transfer_protocol', | 3136 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic
e_media_transfer_protocol', |
3145 ], | 3137 ], |
3146 }], | 3138 }], |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3592 'package_name': 'org/chromium/chrome/browser', | 3584 'package_name': 'org/chromium/chrome/browser', |
3593 'template_deps': ['browser/android/tab_load_status.h'], | 3585 'template_deps': ['browser/android/tab_load_status.h'], |
3594 }, | 3586 }, |
3595 'includes': [ '../build/android/java_cpp_template.gypi' ], | 3587 'includes': [ '../build/android/java_cpp_template.gypi' ], |
3596 }, | 3588 }, |
3597 ], | 3589 ], |
3598 }, | 3590 }, |
3599 ], | 3591 ], |
3600 ], | 3592 ], |
3601 } | 3593 } |
OLD | NEW |