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

Side by Side Diff: chrome/chrome.gyp

Issue 10390003: Make sure only the main browser process and service processes are allowed to create the profile dir… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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
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 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 '../breakpad/breakpad.gyp:breakpad_handler_win64', 1050 '../breakpad/breakpad.gyp:breakpad_handler_win64',
1051 '../breakpad/breakpad.gyp:breakpad_sender_win64', 1051 '../breakpad/breakpad.gyp:breakpad_sender_win64',
1052 ], 1052 ],
1053 'include_dirs': [ 1053 'include_dirs': [
1054 '..', 1054 '..',
1055 ], 1055 ],
1056 'sources': [ 1056 'sources': [
1057 'tools/crash_service/crash_service.cc', 1057 'tools/crash_service/crash_service.cc',
1058 'tools/crash_service/crash_service.h', 1058 'tools/crash_service/crash_service.h',
1059 'tools/crash_service/main.cc', 1059 'tools/crash_service/main.cc',
1060 '../content/public/common/content_switches.cc',
1061 ],
cpu_(ooo_6.6-7.5) 2012/05/09 02:00:19 I don't understand this new dependency, looks ok b
1062 'defines': [
1063 'COMPILE_CONTENT_STATICALLY',
1060 ], 1064 ],
1061 'msvs_settings': { 1065 'msvs_settings': {
1062 'VCLinkerTool': { 1066 'VCLinkerTool': {
1063 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 1067 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
1064 }, 1068 },
1065 }, 1069 },
1066 'configurations': { 1070 'configurations': {
1067 'Common_Base': { 1071 'Common_Base': {
1068 'msvs_target_platform': 'x64', 1072 'msvs_target_platform': 'x64',
1069 }, 1073 },
1070 }, 1074 },
1071 }, 1075 },
1072 { 1076 {
1073 'target_name': 'sb_sigutil', 1077 'target_name': 'sb_sigutil',
1074 'type': 'executable', 1078 'type': 'executable',
1075 'dependencies': [ 1079 'dependencies': [
1076 '../base/base.gyp:base', 1080 '../base/base.gyp:base',
1077 'safe_browsing_proto', 1081 'safe_browsing_proto',
1078 ], 1082 ],
1079 'sources': [ 1083 'sources': [
1080 'browser/safe_browsing/signature_util.h', 1084 'browser/safe_browsing/signature_util.h',
1081 'browser/safe_browsing/signature_util_win.cc', 1085 'browser/safe_browsing/signature_util_win.cc',
1082 'tools/safe_browsing/sb_sigutil.cc', 1086 'tools/safe_browsing/sb_sigutil.cc',
1083 ], 1087 ],
1084 }, 1088 },
1085 ]}, # 'targets' 1089 ]}, # 'targets'
1086 ], # OS=="win" 1090 ], # OS=="win"
1087 ], # 'conditions' 1091 ], # 'conditions'
1088 } 1092 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698