| 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', |
| 111 '../chrome/chrome.gyp:common', | 112 '../chrome/chrome.gyp:common', |
| 113 '../chrome/chrome.gyp:debugger', |
| 114 '../chrome/chrome.gyp:nacl', |
| 115 '../chrome/chrome.gyp:renderer', |
| 112 '../chrome/chrome.gyp:utility', | 116 '../chrome/chrome.gyp:utility', |
| 113 '../testing/gmock.gyp:gmock', | 117 '../testing/gmock.gyp:gmock', |
| 114 '../testing/gtest.gyp:gtest', | 118 '../testing/gtest.gyp:gtest', |
| 115 'base_noicu', | 119 'base_noicu', |
| 116 'chrome_frame_ie', | 120 'chrome_frame_ie', |
| 117 'chrome_frame_npapi', | 121 'chrome_frame_npapi', |
| 118 'chrome_frame_strings', | 122 'chrome_frame_strings', |
| 119 'xulrunner_sdk', | 123 'xulrunner_sdk', |
| 120 ], | 124 ], |
| 121 'sources': [ | 125 'sources': [ |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 # FIXME(slightlyoff): | 614 # FIXME(slightlyoff): |
| 611 # gigantic hack to get these to build from main Chrome sln. | 615 # gigantic hack to get these to build from main Chrome sln. |
| 612 'chrome_frame_perftests', | 616 'chrome_frame_perftests', |
| 613 'chrome_frame_tests', | 617 'chrome_frame_tests', |
| 614 'chrome_frame_unittests', | 618 'chrome_frame_unittests', |
| 615 'chrome_frame_net_tests', | 619 'chrome_frame_net_tests', |
| 616 ], | 620 ], |
| 617 'sources': [ | 621 'sources': [ |
| 618 'chrome_frame_npapi.rgs', | 622 'chrome_frame_npapi.rgs', |
| 619 'chrome_frame_npapi_entrypoints.cc', | 623 'chrome_frame_npapi_entrypoints.cc', |
| 624 'chrome_frame_npapi_entrypoints.h', |
| 620 'chrome_tab.cc', | 625 'chrome_tab.cc', |
| 621 'chrome_tab.def', | 626 'chrome_tab.def', |
| 622 'chrome_tab.h', | 627 'chrome_tab.h', |
| 623 'chrome_tab.idl', | 628 'chrome_tab.idl', |
| 624 # FIXME(slightlyoff): For chrome_tab.tlb. Giant hack until we can | 629 # FIXME(slightlyoff): For chrome_tab.tlb. Giant hack until we can |
| 625 # figure out something more gyp-ish. | 630 # figure out something more gyp-ish. |
| 626 'resources/tlb_resource.rc', | 631 'resources/tlb_resource.rc', |
| 627 'chrome_tab.rgs', | 632 'chrome_tab.rgs', |
| 628 'chrome_tab_version.rc.version', | 633 'chrome_tab_version.rc.version', |
| 629 'iids.cc', | 634 'iids.cc', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 ], | 708 ], |
| 704 } | 709 } |
| 705 | 710 |
| 706 # vim: shiftwidth=2:et:ai:tabstop=2 | 711 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 707 | 712 |
| 708 # Local Variables: | 713 # Local Variables: |
| 709 # tab-width:2 | 714 # tab-width:2 |
| 710 # indent-tabs-mode:nil | 715 # indent-tabs-mode:nil |
| 711 # End: | 716 # End: |
| 712 # vim: set expandtab tabstop=2 shiftwidth=2: | 717 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |