| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 ], | 202 ], |
| 203 }], | 203 }], |
| 204 ], | 204 ], |
| 205 'sources': [ | 205 'sources': [ |
| 206 'third_party/nspr/prcpucfg.h', | 206 'third_party/nspr/prcpucfg.h', |
| 207 'third_party/nspr/prcpucfg_win.h', | 207 'third_party/nspr/prcpucfg_win.h', |
| 208 'third_party/nspr/prtypes.h', | 208 'third_party/nspr/prtypes.h', |
| 209 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | 209 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', |
| 210 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h', | 210 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h', |
| 211 'auto_reset.h', | 211 'auto_reset.h', |
| 212 'base64.cc', | |
| 213 'base64.h', | |
| 214 'event_recorder.h', | 212 'event_recorder.h', |
| 215 'event_recorder_stubs.cc', | 213 'event_recorder_stubs.cc', |
| 216 'event_recorder_win.cc', | 214 'event_recorder_win.cc', |
| 217 'file_descriptor_shuffle.cc', | 215 'file_descriptor_shuffle.cc', |
| 218 'file_descriptor_shuffle.h', | 216 'file_descriptor_shuffle.h', |
| 219 'linux_util.cc', | 217 'linux_util.cc', |
| 220 'linux_util.h', | 218 'linux_util.h', |
| 221 'md5.cc', | 219 'md5.cc', |
| 222 'md5.h', | 220 'md5.h', |
| 223 'message_pump_android.cc', | 221 'message_pump_android.cc', |
| 224 'message_pump_android.h', | 222 'message_pump_android.h', |
| 225 'message_pump_glib.cc', | 223 'message_pump_glib.cc', |
| 226 'message_pump_glib.h', | 224 'message_pump_glib.h', |
| 227 'message_pump_gtk.cc', | 225 'message_pump_gtk.cc', |
| 228 'message_pump_gtk.h', | 226 'message_pump_gtk.h', |
| 229 'message_pump_observer.h', | 227 'message_pump_observer.h', |
| 230 'message_pump_aurax11.cc', | 228 'message_pump_aurax11.cc', |
| 231 'message_pump_aurax11.h', | 229 'message_pump_aurax11.h', |
| 232 'message_pump_libevent.cc', | 230 'message_pump_libevent.cc', |
| 233 'message_pump_libevent.h', | 231 'message_pump_libevent.h', |
| 234 'message_pump_mac.h', | 232 'message_pump_mac.h', |
| 235 'message_pump_mac.mm', | 233 'message_pump_mac.mm', |
| 236 'metrics/field_trial.cc', | 234 'metrics/field_trial.cc', |
| 237 'metrics/field_trial.h', | 235 'metrics/field_trial.h', |
| 238 'string16.cc', | |
| 239 'string16.h', | |
| 240 'sync_socket.h', | 236 'sync_socket.h', |
| 241 'sync_socket_win.cc', | 237 'sync_socket_win.cc', |
| 242 'sync_socket_posix.cc', | 238 'sync_socket_posix.cc', |
| 243 'time_mac.cc', | |
| 244 'time_posix.cc', | |
| 245 ], | 239 ], |
| 246 }, | 240 }, |
| 247 { | 241 { |
| 248 'target_name': 'base_i18n', | 242 'target_name': 'base_i18n', |
| 249 'type': '<(component)', | 243 'type': '<(component)', |
| 250 'variables': { | 244 'variables': { |
| 251 'enable_wexit_time_destructors': 1, | 245 'enable_wexit_time_destructors': 1, |
| 252 'optimize': 'max', | 246 'optimize': 'max', |
| 253 }, | 247 }, |
| 254 'dependencies': [ | 248 'dependencies': [ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 # TODO(rvargas): Remove this when gyp finally supports a clean model. | 318 # TODO(rvargas): Remove this when gyp finally supports a clean model. |
| 325 # See bug 36232. | 319 # See bug 36232. |
| 326 'target_name': 'base_static_win64', | 320 'target_name': 'base_static_win64', |
| 327 'type': 'static_library', | 321 'type': 'static_library', |
| 328 'sources': [ | 322 'sources': [ |
| 329 'base_switches.cc', | 323 'base_switches.cc', |
| 330 'base_switches.h', | 324 'base_switches.h', |
| 331 'win/pe_image.cc', | 325 'win/pe_image.cc', |
| 332 'win/pe_image.h', | 326 'win/pe_image.h', |
| 333 ], | 327 ], |
| 328 'sources!': [ |
| 329 # base64.cc depends on modp_b64. |
| 330 'base64.cc', |
| 331 ], |
| 334 'include_dirs': [ | 332 'include_dirs': [ |
| 335 '..', | 333 '..', |
| 336 ], | 334 ], |
| 337 'configurations': { | 335 'configurations': { |
| 338 'Common_Base': { | 336 'Common_Base': { |
| 339 'msvs_target_platform': 'x64', | 337 'msvs_target_platform': 'x64', |
| 340 }, | 338 }, |
| 341 }, | 339 }, |
| 342 'defines': [ | 340 'defines': [ |
| 343 'NACL_WIN64', | 341 'NACL_WIN64', |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 # TODO(gregoryd): direct_dependent_settings should be shared with the | 823 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 826 # 32-bit target, but it doesn't work due to a bug in gyp | 824 # 32-bit target, but it doesn't work due to a bug in gyp |
| 827 'direct_dependent_settings': { | 825 'direct_dependent_settings': { |
| 828 'include_dirs': [ | 826 'include_dirs': [ |
| 829 '..', | 827 '..', |
| 830 ], | 828 ], |
| 831 }, | 829 }, |
| 832 'defines': [ | 830 'defines': [ |
| 833 '<@(nacl_win64_defines)', | 831 '<@(nacl_win64_defines)', |
| 834 ], | 832 ], |
| 833 'sources!': [ |
| 834 # base64.cc depends on modp_b64. |
| 835 'base64.cc', |
| 836 ], |
| 835 'configurations': { | 837 'configurations': { |
| 836 'Common_Base': { | 838 'Common_Base': { |
| 837 'msvs_target_platform': 'x64', | 839 'msvs_target_platform': 'x64', |
| 838 }, | 840 }, |
| 839 }, | 841 }, |
| 840 'conditions': [ | 842 'conditions': [ |
| 841 ['component == "shared_library"', { | 843 ['component == "shared_library"', { |
| 842 'sources!': [ | 844 'sources!': [ |
| 843 'debug/debug_on_start_win.cc', | 845 'debug/debug_on_start_win.cc', |
| 844 ], | 846 ], |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 'test_suite_name': 'base_unittests', | 1005 'test_suite_name': 'base_unittests', |
| 1004 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', | 1006 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', |
| 1005 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], | 1007 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], |
| 1006 }, | 1008 }, |
| 1007 'includes': [ '../build/apk_test.gypi' ], | 1009 'includes': [ '../build/apk_test.gypi' ], |
| 1008 }, | 1010 }, |
| 1009 ], | 1011 ], |
| 1010 }], | 1012 }], |
| 1011 ], | 1013 ], |
| 1012 } | 1014 } |
| OLD | NEW |