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

Side by Side Diff: extensions/BUILD.gn

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Comment-only change in response to review comments. Created 3 years, 9 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
OLDNEW
1 # Use of this source code is governed by a BSD-style license that can be 1 # Use of this source code is governed by a BSD-style license that can be
2 # found in the LICENSE file. 2 # found in the LICENSE file.
3 3
4 import("//extensions/features/features.gni") 4 import("//extensions/features/features.gni")
5 import("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 8
9 assert(enable_extensions) 9 assert(enable_extensions)
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "renderer/test_extensions_renderer_client.cc", 114 "renderer/test_extensions_renderer_client.cc",
115 "renderer/test_extensions_renderer_client.h", 115 "renderer/test_extensions_renderer_client.h",
116 "test/background_page_watcher.cc", 116 "test/background_page_watcher.cc",
117 "test/background_page_watcher.h", 117 "test/background_page_watcher.h",
118 "test/extension_test_message_listener.cc", 118 "test/extension_test_message_listener.cc",
119 "test/extension_test_message_listener.h", 119 "test/extension_test_message_listener.h",
120 "test/extension_test_notification_observer.cc", 120 "test/extension_test_notification_observer.cc",
121 "test/extension_test_notification_observer.h", 121 "test/extension_test_notification_observer.h",
122 "test/result_catcher.cc", 122 "test/result_catcher.cc",
123 "test/result_catcher.h", 123 "test/result_catcher.h",
124 "test/test_content_browser_client.cc",
125 "test/test_content_browser_client.h",
124 "test/test_content_utility_client.cc", 126 "test/test_content_utility_client.cc",
125 "test/test_content_utility_client.h", 127 "test/test_content_utility_client.h",
126 "test/test_extensions_client.cc", 128 "test/test_extensions_client.cc",
127 "test/test_extensions_client.h", 129 "test/test_extensions_client.h",
128 "test/test_permission_message_provider.cc", 130 "test/test_permission_message_provider.cc",
129 "test/test_permission_message_provider.h", 131 "test/test_permission_message_provider.h",
130 ] 132 ]
131 133
132 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
133 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 135 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 "//testing/gtest", 360 "//testing/gtest",
359 "//third_party/hunspell", 361 "//third_party/hunspell",
360 "//third_party/icu", 362 "//third_party/icu",
361 "//third_party/libpng", 363 "//third_party/libpng",
362 "//third_party/zlib", 364 "//third_party/zlib",
363 "//ui/base:test_support", 365 "//ui/base:test_support",
364 "//ui/resources:ui_test_pak", 366 "//ui/resources:ui_test_pak",
365 "//ui/web_dialogs:test_support", 367 "//ui/web_dialogs:test_support",
366 ] 368 ]
367 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698