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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1402353011: Expose a function to get the path to a DLL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: grt comments #5 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
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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //chrome 8 # GN version: //chrome
9 'target_name': 'chrome', 9 'target_name': 'chrome',
10 'type': 'none', 10 'type': 'none',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 '<(DEPTH)/content/public/common/content_switches.cc', 60 '<(DEPTH)/content/public/common/content_switches.cc',
61 'app/chrome_exe_load_config_win.cc', 61 'app/chrome_exe_load_config_win.cc',
62 'app/chrome_exe_main_aura.cc', 62 'app/chrome_exe_main_aura.cc',
63 'app/chrome_exe_main_mac.cc', 63 'app/chrome_exe_main_mac.cc',
64 'app/chrome_exe_main_win.cc', 64 'app/chrome_exe_main_win.cc',
65 'app/chrome_exe_resource.h', 65 'app/chrome_exe_resource.h',
66 'app/chrome_watcher_client_win.cc', 66 'app/chrome_watcher_client_win.cc',
67 'app/chrome_watcher_client_win.h', 67 'app/chrome_watcher_client_win.h',
68 'app/chrome_watcher_command_line_win.cc', 68 'app/chrome_watcher_command_line_win.cc',
69 'app/chrome_watcher_command_line_win.h', 69 'app/chrome_watcher_command_line_win.h',
70 'app/client_util.cc', 70 'app/main_dll_loader_win.cc',
71 'app/client_util.h', 71 'app/main_dll_loader_win.h',
72 'app/kasko_client.cc', 72 'app/kasko_client.cc',
73 'app/kasko_client.h', 73 'app/kasko_client.h',
74 'app/signature_validator_win.cc', 74 'app/signature_validator_win.cc',
75 'app/signature_validator_win.h', 75 'app/signature_validator_win.h',
76 ], 76 ],
77 'mac_bundle_resources': [ 77 'mac_bundle_resources': [
78 'app/app-Info.plist', 78 'app/app-Info.plist',
79 ], 79 ],
80 # TODO(mark): Come up with a fancier way to do this. It should only 80 # TODO(mark): Come up with a fancier way to do this. It should only
81 # be necessary to list app-Info.plist once, not the three times it is 81 # be necessary to list app-Info.plist once, not the three times it is
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 ], 490 ],
491 }, 491 },
492 { 492 {
493 # GN version: //chrome/app/version_assembly:version_assembly_manif est 493 # GN version: //chrome/app/version_assembly:version_assembly_manif est
494 'action_name': 'version_assembly_manifest', 494 'action_name': 'version_assembly_manifest',
495 'includes': [ 495 'includes': [
496 'app/version_assembly/version_assembly_manifest_action.gypi', 496 'app/version_assembly/version_assembly_manifest_action.gypi',
497 ], 497 ],
498 }, 498 },
499 ], 499 ],
500 }, { # 'OS!="win"
501 'sources!': [
502 'app/client_util.cc',
503 ],
504 }], 500 }],
505 ['OS=="win" and component=="shared_library"', { 501 ['OS=="win" and component=="shared_library"', {
506 'defines': ['COMPILE_CONTENT_STATICALLY'], 502 'defines': ['COMPILE_CONTENT_STATICALLY'],
507 }], 503 }],
508 ], 504 ],
509 }, 505 },
510 ], 506 ],
511 'conditions': [ 507 'conditions': [
512 ['OS=="win"', { 508 ['OS=="win"', {
513 'targets': [ 509 'targets': [
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 'dependencies': [ 613 'dependencies': [
618 'chrome_nacl_win64', 614 'chrome_nacl_win64',
619 ], 615 ],
620 }], 616 }],
621 ], 617 ],
622 }, 618 },
623 ], 619 ],
624 }], 620 }],
625 ], 621 ],
626 } 622 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698