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 'conditions': [ | 5 'conditions': [ |
6 ['OS=="win"', { | 6 ['OS=="win"', { |
7 'variables': { | 7 'variables': { |
8 'chromium_code': 1, | 8 'chromium_code': 1, |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
(...skipping 13 matching lines...) Expand all Loading... |
24 'API-MS-WIN-CORE-WINRT-L1-1-0.DLL', | 24 'API-MS-WIN-CORE-WINRT-L1-1-0.DLL', |
25 'API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL', | 25 'API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL', |
26 ], | 26 ], |
27 }, | 27 }, |
28 }, | 28 }, |
29 }, | 29 }, |
30 'targets': [ | 30 'targets': [ |
31 { | 31 { |
32 'target_name': 'metro_driver_version_resources', | 32 'target_name': 'metro_driver_version_resources', |
33 'type': 'none', | 33 'type': 'none', |
34 'conditions': [ | |
35 ['branding == "Chrome"', { | |
36 'variables': { | |
37 'branding_path': '../../chrome/app/theme/google_chrome/BRANDING
', | |
38 }, | |
39 }, { # else branding!="Chrome" | |
40 'variables': { | |
41 'branding_path': '../../chrome/app/theme/chromium/BRANDING', | |
42 }, | |
43 }], | |
44 ], | |
45 'variables': { | 34 'variables': { |
46 'output_dir': 'metro_driver', | 35 'output_dir': 'metro_driver', |
| 36 'branding_path': '../../chrome/app/theme/<(branding_path_component)/
BRANDING', |
47 'template_input_path': '../../chrome/app/chrome_version.rc.version', | 37 'template_input_path': '../../chrome/app/chrome_version.rc.version', |
48 }, | 38 }, |
49 'sources': [ | 39 'sources': [ |
50 'metro_driver_dll.ver', | 40 'metro_driver_dll.ver', |
51 ], | 41 ], |
52 'includes': [ | 42 'includes': [ |
53 '../../chrome/version_resource_rules.gypi', | 43 '../../chrome/version_resource_rules.gypi', |
54 ], | 44 ], |
55 }, | 45 }, |
56 { | 46 { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 'run_all_unittests.cc', | 138 'run_all_unittests.cc', |
149 'winrt_utils.cc', | 139 'winrt_utils.cc', |
150 'winrt_utils.h', | 140 'winrt_utils.h', |
151 'winrt_utils_unittest.cc', | 141 'winrt_utils_unittest.cc', |
152 ], | 142 ], |
153 }, | 143 }, |
154 ], | 144 ], |
155 },], | 145 },], |
156 ], | 146 ], |
157 } | 147 } |
OLD | NEW |