Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: win8/delegate_execute/delegate_execute.gyp

Issue 1464263003: Add metro driver and delegate_execute to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « win8/delegate_execute/chrome_util.cc ('k') | win8/metro_driver/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../../build/util/version.gypi', 9 '../../build/util/version.gypi',
10 '../../build/win_precompile.gypi', 10 '../../build/win_precompile.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 # GN version: //win8/delegate_execute:version_resources
14 'target_name': 'delegate_execute_version_resources', 15 'target_name': 'delegate_execute_version_resources',
15 'type': 'none', 16 'type': 'none',
16 'conditions': [ 17 'conditions': [
17 ['branding == "Chrome"', { 18 ['branding == "Chrome"', {
18 'variables': { 19 'variables': {
19 'branding_path': '../../chrome/app/theme/google_chrome/BRANDING', 20 'branding_path': '../../chrome/app/theme/google_chrome/BRANDING',
20 }, 21 },
21 }, { # else branding!="Chrome" 22 }, { # else branding!="Chrome"
22 'variables': { 23 'variables': {
23 'branding_path': '../../chrome/app/theme/chromium/BRANDING', 24 'branding_path': '../../chrome/app/theme/chromium/BRANDING',
24 }, 25 },
25 }], 26 }],
26 ], 27 ],
27 'variables': { 28 'variables': {
28 'output_dir': 'delegate_execute', 29 'output_dir': 'delegate_execute',
29 'template_input_path': '../../chrome/app/chrome_version.rc.version', 30 'template_input_path': '../../chrome/app/chrome_version.rc.version',
30 }, 31 },
31 'sources': [ 32 'sources': [
32 'delegate_execute_exe.ver', 33 'delegate_execute_exe.ver',
33 ], 34 ],
34 'includes': [ 35 'includes': [
35 '../../chrome/version_resource_rules.gypi', 36 '../../chrome/version_resource_rules.gypi',
36 ], 37 ],
37 }, 38 },
38 { 39 {
40 # GN version: //win8/delegate_execute
39 'target_name': 'delegate_execute', 41 'target_name': 'delegate_execute',
40 'type': 'executable', 42 'type': 'executable',
41 'dependencies': [ 43 'dependencies': [
42 '../../base/base.gyp:base', 44 '../../base/base.gyp:base',
43 '../../breakpad/breakpad.gyp:breakpad_handler', 45 '../../breakpad/breakpad.gyp:breakpad_handler',
44 '../../chrome/chrome.gyp:installer_util', 46 '../../chrome/chrome.gyp:installer_util',
45 '../../content/content.gyp:content_common', 47 '../../content/content.gyp:content_common',
46 '../../google_update/google_update.gyp:google_update', 48 '../../google_update/google_update.gyp:google_update',
47 '../../ui/base/ui_base.gyp:ui_base', 49 '../../ui/base/ui_base.gyp:ui_base',
48 '../../ui/gfx/gfx.gyp:gfx', 50 '../../ui/gfx/gfx.gyp:gfx',
(...skipping 29 matching lines...) Expand all
78 ], 80 ],
79 }], 81 }],
80 ['branding!="Chrome"', { 82 ['branding!="Chrome"', {
81 'dependencies!': [ 83 'dependencies!': [
82 '../../google_update/google_update.gyp:google_update', 84 '../../google_update/google_update.gyp:google_update',
83 ], 85 ],
84 }], 86 }],
85 ], 87 ],
86 }, 88 },
87 { 89 {
90 # GN version: //win8/delegate_execute:delegate_execute_unittests
88 'target_name': 'delegate_execute_unittests', 91 'target_name': 'delegate_execute_unittests',
89 'type': 'executable', 92 'type': 'executable',
90 'dependencies': [ 93 'dependencies': [
91 '../../base/base.gyp:base', 94 '../../base/base.gyp:base',
92 '../../base/base.gyp:run_all_unittests', 95 '../../base/base.gyp:run_all_unittests',
93 '../../testing/gtest.gyp:gtest', 96 '../../testing/gtest.gyp:gtest',
94 ], 97 ],
95 'sources': [ 98 'sources': [
96 'delegate_execute_util.cc', 99 'delegate_execute_util.cc',
97 'delegate_execute_util.h', 100 'delegate_execute_util.h',
98 'delegate_execute_util_unittest.cc', 101 'delegate_execute_util_unittest.cc',
99 ], 102 ],
100 }, 103 },
101 ], 104 ],
102 } 105 }
OLDNEW
« no previous file with comments | « win8/delegate_execute/chrome_util.cc ('k') | win8/metro_driver/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698