Open HTML files in Chrome by default.
[chromium-blink-merge.git] / chrome_elf / chrome_elf.gyp
bloba8f15bd8418e0fee0a15a4363647f50d7af3805b
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5   'variables': {
6     'chromium_code': 1,
7   },
8   'includes': [
9     '../build/win_precompile.gypi',
10     '../chrome/version.gypi',
11   ],
12   'targets': [
13     {
14       'target_name': 'chrome_elf',
15       'type': 'shared_library',
16       'include_dirs': [
17         '..',
18       ],
19       'sources': [
20         'chrome_elf.def',
21         'chrome_elf_main.cc',
22         'chrome_elf_main.h',
23       ],
24       'msvs_settings': {
25         'VCLinkerTool': {
26           'BaseAddress': '0x01c20000',
27           # Set /SUBSYSTEM:WINDOWS for chrome_elf.dll (for consistency).
28           'SubSystem': '2',
29         },
30       },
31     },
32   ],