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

Side by Side Diff: trunk/src/chrome/split_dll_fake_entry.cc

Issue 19572012: Revert 212230 "Create top-level separate targets for browser and..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include <windows.h> 5 #include <windows.h>
6 6
7 extern "C" { 7 extern "C" {
8 8
9 // This entry point and file is used to work around circular dependencies 9 // This entry point and file is used to work around circular dependencies
10 // between the split DLLs. The CRT initialization will fail if done at attach 10 // between the split DLLs. The CRT initialization will fail if done at attach
(...skipping 20 matching lines...) Expand all
31 31
32 // This function is needed for the linker to succeed. It seems to pick the 32 // This function is needed for the linker to succeed. It seems to pick the
33 // CRT lib based on the existence of "DllMain", and since we're renaming that, 33 // CRT lib based on the existence of "DllMain", and since we're renaming that,
34 // it instead chooses the one that links against "main". This function should 34 // it instead chooses the one that links against "main". This function should
35 // never be called. 35 // never be called.
36 int main() { 36 int main() {
37 __debugbreak(); 37 __debugbreak();
38 } 38 }
39 39
40 } 40 }
OLDNEW
« no previous file with comments | « trunk/src/chrome/installer/mini_installer_syzygy.gyp ('k') | trunk/src/components/autofill.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698