OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
552 'sources': [ | 552 'sources': [ |
553 'browser/safe_browsing/binary_feature_extractor.h', | 553 'browser/safe_browsing/binary_feature_extractor.h', |
554 'browser/safe_browsing/binary_feature_extractor_win.cc', | 554 'browser/safe_browsing/binary_feature_extractor_win.cc', |
555 'browser/safe_browsing/pe_image_reader_win.cc', | 555 'browser/safe_browsing/pe_image_reader_win.cc', |
556 'browser/safe_browsing/pe_image_reader_win.h', | 556 'browser/safe_browsing/pe_image_reader_win.h', |
557 'tools/safe_browsing/sb_sigutil.cc', | 557 'tools/safe_browsing/sb_sigutil.cc', |
558 ], | 558 ], |
559 }, | 559 }, |
560 ], # 'targets' | 560 ], # 'targets' |
561 'includes': [ | 561 'includes': [ |
562 '../app_installer/app_installer.gypi', | |
tapted
2014/07/30 04:12:50
I think you only need a gypi here if there's a cir
jackhou1
2014/07/30 05:01:05
Done.
| |
562 'chrome_process_finder.gypi', | 563 'chrome_process_finder.gypi', |
563 'metro_utils.gypi', | 564 'metro_utils.gypi', |
564 ], | 565 ], |
565 }], # OS=="win" | 566 }], # OS=="win" |
566 ['OS=="win" and target_arch=="ia32"', | 567 ['OS=="win" and target_arch=="ia32"', |
567 { 'targets': [ | 568 { 'targets': [ |
568 { | 569 { |
569 'target_name': 'chrome_user32_delay_imports', | 570 'target_name': 'chrome_user32_delay_imports', |
570 'type': 'none', | 571 'type': 'none', |
571 'variables': { | 572 'variables': { |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
762 'sources': [ | 763 'sources': [ |
763 'service/cloud_print/print_system_dummy.cc', | 764 'service/cloud_print/print_system_dummy.cc', |
764 ], | 765 ], |
765 }], | 766 }], |
766 ], | 767 ], |
767 }, | 768 }, |
768 ], | 769 ], |
769 }], | 770 }], |
770 ], # 'conditions' | 771 ], # 'conditions' |
771 } | 772 } |
OLD | NEW |