Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 10 'variables': { |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 'test/win_event_receiver.h', | 184 'test/win_event_receiver.h', |
| 185 'test/win_event_receiver.cc', | 185 'test/win_event_receiver.cc', |
| 186 'unittest_precompile.h', | 186 'unittest_precompile.h', |
| 187 'unittest_precompile.cc', | 187 'unittest_precompile.cc', |
| 188 'urlmon_upload_data_stream.cc', | 188 'urlmon_upload_data_stream.cc', |
| 189 'urlmon_upload_data_stream_unittest.cc', | 189 'urlmon_upload_data_stream_unittest.cc', |
| 190 'vtable_patch_manager_unittest.cc', | 190 'vtable_patch_manager_unittest.cc', |
| 191 ], | 191 ], |
| 192 'include_dirs': [ | 192 'include_dirs': [ |
| 193 '<@(xul_include_directories)', | 193 '<@(xul_include_directories)', |
| 194 '<(SHARED_INTERMEDIATE_DIR)/policy', | |
|
bradn
2011/01/20 17:57:02
Have the policy targets export this rather than ha
danno
2011/01/24 18:14:23
Done.
| |
| 194 ], | 195 ], |
| 195 'resource_include_dirs': [ | 196 'resource_include_dirs': [ |
| 196 '<(INTERMEDIATE_DIR)', | 197 '<(INTERMEDIATE_DIR)', |
| 197 '<(SHARED_INTERMEDIATE_DIR)', | 198 '<(SHARED_INTERMEDIATE_DIR)', |
| 198 ], | 199 ], |
| 199 'conditions': [ | 200 'conditions': [ |
| 200 # We needed to extract this test from the chrome_frame_unittests because | 201 # We needed to extract this test from the chrome_frame_unittests because |
| 201 # we can't instrument code for coverage if it depends on 3rd party | 202 # we can't instrument code for coverage if it depends on 3rd party |
| 202 # binaries that we don't have PDBs for. See here for more details: | 203 # binaries that we don't have PDBs for. See here for more details: |
| 203 # http://connect.microsoft.com/VisualStudio/feedback/details/176188/can- not-disable-warning-lnk4099 | 204 # http://connect.microsoft.com/VisualStudio/feedback/details/176188/can- not-disable-warning-lnk4099 |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 789 'target_name': 'chrome_frame_ie', | 790 'target_name': 'chrome_frame_ie', |
| 790 'type': 'static_library', | 791 'type': 'static_library', |
| 791 'dependencies': [ | 792 'dependencies': [ |
| 792 'chrome_frame_common', | 793 'chrome_frame_common', |
| 793 'chrome_frame_strings', | 794 'chrome_frame_strings', |
| 794 'chrome_frame_utils', | 795 'chrome_frame_utils', |
| 795 'chrome_tab_idl', | 796 'chrome_tab_idl', |
| 796 '../ceee/ie/common/common.gyp:ie_common', | 797 '../ceee/ie/common/common.gyp:ie_common', |
| 797 '../ceee/ie/common/common.gyp:ie_guids', | 798 '../ceee/ie/common/common.gyp:ie_guids', |
| 798 '../chrome/chrome.gyp:common', | 799 '../chrome/chrome.gyp:common', |
| 800 '../chrome/chrome.gyp:policy', | |
| 799 '../chrome/chrome.gyp:utility', | 801 '../chrome/chrome.gyp:utility', |
| 800 '../build/temp_gyp/googleurl.gyp:googleurl', | 802 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 801 '../third_party/libxml/libxml.gyp:libxml', | 803 '../third_party/libxml/libxml.gyp:libxml', |
| 802 '../third_party/bzip2/bzip2.gyp:bzip2', | 804 '../third_party/bzip2/bzip2.gyp:bzip2', |
| 803 '../webkit/support/webkit_support.gyp:webkit_user_agent', | 805 '../webkit/support/webkit_support.gyp:webkit_user_agent', |
| 804 ], | 806 ], |
| 805 'sources': [ | 807 'sources': [ |
| 806 'bho.cc', | 808 'bho.cc', |
| 807 'bho.h', | 809 'bho.h', |
| 808 'bho.rgs', | 810 'bho.rgs', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 888 'urlmon_upload_data_stream.cc', | 890 'urlmon_upload_data_stream.cc', |
| 889 'urlmon_upload_data_stream.h', | 891 'urlmon_upload_data_stream.h', |
| 890 'utils.h', | 892 'utils.h', |
| 891 'utils.cc', | 893 'utils.cc', |
| 892 'vtable_patch_manager.cc', | 894 'vtable_patch_manager.cc', |
| 893 'vtable_patch_manager.h', | 895 'vtable_patch_manager.h', |
| 894 ], | 896 ], |
| 895 'include_dirs': [ | 897 'include_dirs': [ |
| 896 '<(INTERMEDIATE_DIR)/../chrome_frame', | 898 '<(INTERMEDIATE_DIR)/../chrome_frame', |
| 897 '<(DEPTH)/third_party/wtl/include', | 899 '<(DEPTH)/third_party/wtl/include', |
| 900 '<(SHARED_INTERMEDIATE_DIR)/policy', | |
|
bradn
2011/01/20 17:57:02
Get this from policy.
danno
2011/01/24 18:14:23
Done.
| |
| 898 ], | 901 ], |
| 899 'conditions': [ | 902 'conditions': [ |
| 900 ['OS=="win"', { | 903 ['OS=="win"', { |
| 901 # NOTE(slightlyoff): | 904 # NOTE(slightlyoff): |
| 902 # this is a fix for the include dirs length limit on the resource | 905 # this is a fix for the include dirs length limit on the resource |
| 903 # compiler, tickled by the xul_include_dirs variable | 906 # compiler, tickled by the xul_include_dirs variable |
| 904 'resource_include_dirs': [ | 907 'resource_include_dirs': [ |
| 905 '<(INTERMEDIATE_DIR)' | 908 '<(INTERMEDIATE_DIR)' |
| 906 ], | 909 ], |
| 907 'dependencies': [ | 910 'dependencies': [ |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1198 ], # 'conditions' | 1201 ], # 'conditions' |
| 1199 } | 1202 } |
| 1200 | 1203 |
| 1201 # vim: shiftwidth=2:et:ai:tabstop=2 | 1204 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 1202 | 1205 |
| 1203 # Local Variables: | 1206 # Local Variables: |
| 1204 # tab-width:2 | 1207 # tab-width:2 |
| 1205 # indent-tabs-mode:nil | 1208 # indent-tabs-mode:nil |
| 1206 # End: | 1209 # End: |
| 1207 # vim: set expandtab tabstop=2 shiftwidth=2: | 1210 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |