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 3209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3220 ['enable_themes==1', { | 3220 ['enable_themes==1', { |
3221 'sources': [ '<@(chrome_browser_themes_sources)' ], | 3221 'sources': [ '<@(chrome_browser_themes_sources)' ], |
3222 }], | 3222 }], |
3223 # Some form of printing support. | 3223 # Some form of printing support. |
3224 ['enable_printing!=0', { | 3224 ['enable_printing!=0', { |
3225 'dependencies': [ | 3225 'dependencies': [ |
3226 '../printing/printing.gyp:printing', | 3226 '../printing/printing.gyp:printing', |
3227 ], | 3227 ], |
3228 'sources': [ '<@(chrome_browser_basic_printing_sources)' ], | 3228 'sources': [ '<@(chrome_browser_basic_printing_sources)' ], |
3229 'conditions': [ | 3229 'conditions': [ |
3230 ['OS=="win" and win_pdf_metafile_for_printing==1', { | 3230 ['OS=="win"', { |
3231 'sources': [ '<@(chrome_browser_printing_emf_sources)' ], | 3231 'sources': [ '<@(chrome_browser_printing_emf_sources)' ], |
3232 }], | 3232 }], |
3233 # Full printing on top of the above. | 3233 # Full printing on top of the above. |
3234 ['enable_printing==1', { | 3234 ['enable_printing==1', { |
3235 'sources': [ '<@(chrome_browser_full_printing_sources)' ], | 3235 'sources': [ '<@(chrome_browser_full_printing_sources)' ], |
3236 }], | 3236 }], |
3237 # Partial-only printing support. | 3237 # Partial-only printing support. |
3238 ['enable_printing==2', { | 3238 ['enable_printing==2', { |
3239 'sources': [ '<@(chrome_browser_basic_only_printing_sources)' ], | 3239 'sources': [ '<@(chrome_browser_basic_only_printing_sources)' ], |
3240 }], | 3240 }], |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3577 'variables': { | 3577 'variables': { |
3578 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3578 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3579 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3579 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3580 }, | 3580 }, |
3581 'includes': [ '../build/protoc.gypi' ] | 3581 'includes': [ '../build/protoc.gypi' ] |
3582 }, | 3582 }, |
3583 ], | 3583 ], |
3584 },], | 3584 },], |
3585 ], | 3585 ], |
3586 } | 3586 } |
OLD | NEW |