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

Unified Diff: chrome_elf/blacklist.gypi

Issue 107663008: Chrome browser process DLL blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge unit tests into chrome_elf_unittests.exe. Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome_elf/blacklist.gypi
diff --git a/chrome_elf/blacklist.gypi b/chrome_elf/blacklist.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..5a34fceaaca894ddbf1d96002f74db7f4edb81f1
--- /dev/null
+++ b/chrome_elf/blacklist.gypi
@@ -0,0 +1,56 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'blacklist',
+ 'type': 'static_library',
+ 'sources': [
+ 'blacklist/blacklist.cc',
+ 'blacklist/blacklist.h',
+ 'blacklist/blacklist_interceptions.cc',
grt (UTC plus 2) 2013/12/16 23:33:49 this appears to depend on stuff in base. please ad
robertshield 2013/12/17 03:43:04 This was explicitly not done to ensure no dependen
+ 'blacklist/blacklist_interceptions.h',
+ ],
+ 'dependencies': [
+ '../sandbox/sandbox.gyp:sandbox',
+ ],
+ },
+ {
+ 'target_name': 'blacklist_test_main_dll',
+ 'type': 'shared_library',
+ 'sources': [
+ 'blacklist/test/blacklist_test_main_dll.cc',
+ 'blacklist/test/blacklist_test_main_dll.def',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'blacklist',
+ ],
+ },
+ {
+ 'target_name': 'blacklist_test_dll_1',
+ 'type': 'shared_library',
grt (UTC plus 2) 2013/12/16 23:33:49 it looks like this dll and the next are only loade
robertshield 2013/12/17 03:43:04 Done.
+ 'sources': [
+ 'blacklist/test/blacklist_test_dll_1.cc',
+ 'blacklist/test/blacklist_test_dll_1.def',
+ ],
+ },
+ {
+ 'target_name': 'blacklist_test_dll_2',
+ 'type': 'shared_library',
+ 'sources': [
+ 'blacklist/test/blacklist_test_dll_2.cc',
+ 'blacklist/test/blacklist_test_dll_2.def',
+ ],
+ },
+ {
+ 'target_name': 'blacklist_test_dll_3',
+ 'type': 'loadable_module',
+ 'sources': [
+ 'blacklist/test/blacklist_test_dll_3.cc',
+ ],
+ },
+ ],
+}
+

Powered by Google App Engine
This is Rietveld 408576698