OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', | 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', |
9 | 9 |
10 # Keep the archive builder happy. | 10 # Keep the archive builder happy. |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'libraries': [ | 101 'libraries': [ |
102 '<(PRODUCT_DIR)/lib/base_noicu.lib', | 102 '<(PRODUCT_DIR)/lib/base_noicu.lib', |
103 ], | 103 ], |
104 }, | 104 }, |
105 }, | 105 }, |
106 { | 106 { |
107 'target_name': 'chrome_frame_unittests', | 107 'target_name': 'chrome_frame_unittests', |
108 'type': 'executable', | 108 'type': 'executable', |
109 'dependencies': [ | 109 'dependencies': [ |
110 '../build/temp_gyp/googleurl.gyp:googleurl', | 110 '../build/temp_gyp/googleurl.gyp:googleurl', |
111 '../chrome/chrome.gyp:browser', | |
112 '../chrome/chrome.gyp:common', | 111 '../chrome/chrome.gyp:common', |
113 '../chrome/chrome.gyp:debugger', | |
114 '../chrome/chrome.gyp:nacl', | |
115 '../chrome/chrome.gyp:renderer', | |
116 '../chrome/chrome.gyp:utility', | 112 '../chrome/chrome.gyp:utility', |
117 '../testing/gmock.gyp:gmock', | 113 '../testing/gmock.gyp:gmock', |
118 '../testing/gtest.gyp:gtest', | 114 '../testing/gtest.gyp:gtest', |
119 'base_noicu', | 115 'base_noicu', |
120 'chrome_frame_ie', | 116 'chrome_frame_ie', |
121 'chrome_frame_npapi', | 117 'chrome_frame_npapi', |
122 'chrome_frame_strings', | 118 'chrome_frame_strings', |
123 'xulrunner_sdk', | 119 'xulrunner_sdk', |
124 ], | 120 ], |
125 'sources': [ | 121 'sources': [ |
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 # FIXME(slightlyoff): | 610 # FIXME(slightlyoff): |
615 # gigantic hack to get these to build from main Chrome sln. | 611 # gigantic hack to get these to build from main Chrome sln. |
616 'chrome_frame_perftests', | 612 'chrome_frame_perftests', |
617 'chrome_frame_tests', | 613 'chrome_frame_tests', |
618 'chrome_frame_unittests', | 614 'chrome_frame_unittests', |
619 'chrome_frame_net_tests', | 615 'chrome_frame_net_tests', |
620 ], | 616 ], |
621 'sources': [ | 617 'sources': [ |
622 'chrome_frame_npapi.rgs', | 618 'chrome_frame_npapi.rgs', |
623 'chrome_frame_npapi_entrypoints.cc', | 619 'chrome_frame_npapi_entrypoints.cc', |
624 'chrome_frame_npapi_entrypoints.h', | |
625 'chrome_tab.cc', | 620 'chrome_tab.cc', |
626 'chrome_tab.def', | 621 'chrome_tab.def', |
627 'chrome_tab.h', | 622 'chrome_tab.h', |
628 'chrome_tab.idl', | 623 'chrome_tab.idl', |
629 # FIXME(slightlyoff): For chrome_tab.tlb. Giant hack until we can | 624 # FIXME(slightlyoff): For chrome_tab.tlb. Giant hack until we can |
630 # figure out something more gyp-ish. | 625 # figure out something more gyp-ish. |
631 'resources/tlb_resource.rc', | 626 'resources/tlb_resource.rc', |
632 'chrome_tab.rgs', | 627 'chrome_tab.rgs', |
633 'chrome_tab_version.rc.version', | 628 'chrome_tab_version.rc.version', |
634 'iids.cc', | 629 'iids.cc', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 ], | 703 ], |
709 } | 704 } |
710 | 705 |
711 # vim: shiftwidth=2:et:ai:tabstop=2 | 706 # vim: shiftwidth=2:et:ai:tabstop=2 |
712 | 707 |
713 # Local Variables: | 708 # Local Variables: |
714 # tab-width:2 | 709 # tab-width:2 |
715 # indent-tabs-mode:nil | 710 # indent-tabs-mode:nil |
716 # End: | 711 # End: |
717 # vim: set expandtab tabstop=2 shiftwidth=2: | 712 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |