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

Side by Side Diff: chrome/common_constants.gyp

Issue 174253002: Initialize chrome::DIR_USER_DATA early on for service processes, etc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use dynamic_annotations_win64 for common_constants_win64. Created 6 years, 9 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_paths.cc ('k') | no next file » | 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'includes': [ 10 'includes': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 }, 65 },
66 'targets': [ 66 'targets': [
67 { 67 {
68 'target_name': 'common_constants', 68 'target_name': 'common_constants',
69 'type': 'static_library', 69 'type': 'static_library',
70 'include_dirs': [ 70 'include_dirs': [
71 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. 71 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc.
72 ], 72 ],
73 'dependencies': [ 73 'dependencies': [
74 '../base/base.gyp:base', 74 '../base/base.gyp:base',
75 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
75 '../components/nacl.gyp:nacl_switches', 76 '../components/nacl.gyp:nacl_switches',
76 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 77 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
77 ], 78 ],
78 'target_conditions': [ 79 'target_conditions': [
79 ['OS=="ios"', { 80 ['OS=="ios"', {
80 # iOS needs chrome_paths_mac, which is excluded by filename rules; 81 # iOS needs chrome_paths_mac, which is excluded by filename rules;
81 # re-add it in target_conditionals so it's after that exclusion. 82 # re-add it in target_conditionals so it's after that exclusion.
82 'sources/': [ 83 'sources/': [
83 ['include', '^common/chrome_paths_mac\\.mm$'], 84 ['include', '^common/chrome_paths_mac\\.mm$'],
84 ], 85 ],
(...skipping 10 matching lines...) Expand all
95 ['OS=="win" and target_arch=="ia32"', { 96 ['OS=="win" and target_arch=="ia32"', {
96 'targets': [ 97 'targets': [
97 { 98 {
98 'target_name': 'common_constants_win64', 99 'target_name': 'common_constants_win64',
99 'type': 'static_library', 100 'type': 'static_library',
100 'include_dirs': [ 101 'include_dirs': [
101 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. 102 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc.
102 ], 103 ],
103 'dependencies': [ 104 'dependencies': [
104 '../base/base.gyp:base_win64', 105 '../base/base.gyp:base_win64',
106 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations_win64',
105 '../components/nacl.gyp:nacl_switches_win64', 107 '../components/nacl.gyp:nacl_switches_win64',
106 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h ', 108 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h ',
107 ], 109 ],
108 'defines': [ 110 'defines': [
109 '<@(nacl_win64_defines)', 111 '<@(nacl_win64_defines)',
110 'COMPILE_CONTENT_STATICALLY', 112 'COMPILE_CONTENT_STATICALLY',
111 ], 113 ],
112 'configurations': { 114 'configurations': {
113 'Common_Base': { 115 'Common_Base': {
114 'msvs_target_platform': 'x64', 116 'msvs_target_platform': 'x64',
115 }, 117 },
116 }, 118 },
117 }, 119 },
118 ], 120 ],
119 }], 121 }],
120 ], 122 ],
121 } 123 }
OLDNEW
« no previous file with comments | « chrome/common/chrome_paths.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698