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

Side by Side Diff: chrome/chrome.gyp

Issue 8463020: Make sure only the right processes can access the profile path. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added user notification for network profiles. Created 8 years, 11 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/browser/chrome_browser_main.cc ('k') | chrome/common/chrome_paths.cc » ('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 '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 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 'dependencies': [ 1299 'dependencies': [
1300 'common_constants_win64', 1300 'common_constants_win64',
1301 'installer_util_nacl_win64', 1301 'installer_util_nacl_win64',
1302 '../base/base.gyp:base_static_win64', 1302 '../base/base.gyp:base_static_win64',
1303 '../breakpad/breakpad.gyp:breakpad_handler_win64', 1303 '../breakpad/breakpad.gyp:breakpad_handler_win64',
1304 '../breakpad/breakpad.gyp:breakpad_sender_win64', 1304 '../breakpad/breakpad.gyp:breakpad_sender_win64',
1305 ], 1305 ],
1306 'include_dirs': [ 1306 'include_dirs': [
1307 '..', 1307 '..',
1308 ], 1308 ],
1309 'defines': [
1310 'COMPILE_CONTENT_STATICALLY',
1311 ],
1309 'sources': [ 1312 'sources': [
1310 'tools/crash_service/crash_service.cc', 1313 'tools/crash_service/crash_service.cc',
1311 'tools/crash_service/crash_service.h', 1314 'tools/crash_service/crash_service.h',
1312 'tools/crash_service/main.cc', 1315 'tools/crash_service/main.cc',
1316 '../content/public/common/content_switches.cc',
1317 '../content/public/common/content_switches.h',
1313 ], 1318 ],
1314 'msvs_settings': { 1319 'msvs_settings': {
1315 'VCLinkerTool': { 1320 'VCLinkerTool': {
1316 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 1321 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
1317 }, 1322 },
1318 }, 1323 },
1319 'configurations': { 1324 'configurations': {
1320 'Common_Base': { 1325 'Common_Base': {
1321 'msvs_target_platform': 'x64', 1326 'msvs_target_platform': 'x64',
1322 }, 1327 },
1323 }, 1328 },
1324 }, 1329 },
1325 { 1330 {
1326 'target_name': 'sb_sigutil', 1331 'target_name': 'sb_sigutil',
1327 'type': 'executable', 1332 'type': 'executable',
1328 'dependencies': [ 1333 'dependencies': [
1329 '../base/base.gyp:base', 1334 '../base/base.gyp:base',
1330 'safe_browsing_proto', 1335 'safe_browsing_proto',
1331 ], 1336 ],
1332 'sources': [ 1337 'sources': [
1333 'browser/safe_browsing/signature_util.h', 1338 'browser/safe_browsing/signature_util.h',
1334 'browser/safe_browsing/signature_util_win.cc', 1339 'browser/safe_browsing/signature_util_win.cc',
1335 'tools/safe_browsing/sb_sigutil.cc', 1340 'tools/safe_browsing/sb_sigutil.cc',
1336 ], 1341 ],
1337 }, 1342 },
1338 ]}, # 'targets' 1343 ]}, # 'targets'
1339 ], # OS=="win" 1344 ], # OS=="win"
1340 ], # 'conditions' 1345 ], # 'conditions'
1341 } 1346 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/common/chrome_paths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698