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

Side by Side Diff: extensions/browser/BUILD.gn

Issue 464613002: Move SafeManifestParser to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge and update gn Created 6 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 "file_reader.h", 339 "file_reader.h",
340 "granted_file_entry.cc", 340 "granted_file_entry.cc",
341 "granted_file_entry.h", 341 "granted_file_entry.h",
342 "guest_view/app_view/app_view_constants.cc", 342 "guest_view/app_view/app_view_constants.cc",
343 "guest_view/app_view/app_view_constants.h", 343 "guest_view/app_view/app_view_constants.h",
344 "guest_view/app_view/app_view_guest.cc", 344 "guest_view/app_view/app_view_guest.cc",
345 "guest_view/app_view/app_view_guest.h", 345 "guest_view/app_view/app_view_guest.h",
346 "guest_view/app_view/app_view_guest_delegate.cc", 346 "guest_view/app_view/app_view_guest_delegate.cc",
347 "guest_view/app_view/app_view_guest_delegate.h", 347 "guest_view/app_view/app_view_guest_delegate.h",
348 "guest_view/extension_options/extension_options_constants.cc", 348 "guest_view/extension_options/extension_options_constants.cc",
349 "guest_view/extension_options/extension_options_constants.h", 349 "guest_view/extension_options/extension_options_constants.h",
350 "guest_view/extension_options/extension_options_guest.cc", 350 "guest_view/extension_options/extension_options_guest.cc",
351 "guest_view/extension_options/extension_options_guest.h", 351 "guest_view/extension_options/extension_options_guest.h",
352 "guest_view/extension_options/extension_options_guest_delegate.cc", 352 "guest_view/extension_options/extension_options_guest_delegate.cc",
353 "guest_view/extension_options/extension_options_guest_delegate.h", 353 "guest_view/extension_options/extension_options_guest_delegate.h",
354 "guest_view/guest_view_base.cc", 354 "guest_view/guest_view_base.cc",
355 "guest_view/guest_view_base.h", 355 "guest_view/guest_view_base.h",
356 "guest_view/guest_view_manager_factory.h", 356 "guest_view/guest_view_manager_factory.h",
357 "guest_view/guest_view_manager.cc", 357 "guest_view/guest_view_manager.cc",
358 "guest_view/guest_view_manager.h", 358 "guest_view/guest_view_manager.h",
359 "guest_view/guest_view.h", 359 "guest_view/guest_view.h",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 "script_executor.cc", 411 "script_executor.cc",
412 "script_executor.h", 412 "script_executor.h",
413 "state_store.cc", 413 "state_store.cc",
414 "state_store.h", 414 "state_store.h",
415 "suggest_permission_util.cc", 415 "suggest_permission_util.cc",
416 "suggest_permission_util.h", 416 "suggest_permission_util.h",
417 "uninstall_reason.h", 417 "uninstall_reason.h",
418 "update_observer.h", 418 "update_observer.h",
419 "updater/manifest_fetch_data.cc", 419 "updater/manifest_fetch_data.cc",
420 "updater/manifest_fetch_data.h", 420 "updater/manifest_fetch_data.h",
421 "updater/safe_manifest_parser.cc",
422 "updater/safe_manifest_parser.h",
421 "url_request_util.cc", 423 "url_request_util.cc",
422 "url_request_util.h", 424 "url_request_util.h",
423 "value_store/leveldb_value_store.cc", 425 "value_store/leveldb_value_store.cc",
424 "value_store/leveldb_value_store.h", 426 "value_store/leveldb_value_store.h",
425 "value_store/testing_value_store.cc", 427 "value_store/testing_value_store.cc",
426 "value_store/testing_value_store.h", 428 "value_store/testing_value_store.h",
427 "value_store/value_store.cc", 429 "value_store/value_store.cc",
428 "value_store/value_store.h", 430 "value_store/value_store.h",
429 "value_store/value_store_change.cc", 431 "value_store/value_store_change.cc",
430 "value_store/value_store_change.h", 432 "value_store/value_store_change.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 ] 465 ]
464 } 466 }
465 } 467 }
466 468
467 if (is_win) { 469 if (is_win) {
468 cflags = [ 470 cflags = [
469 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 471 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
470 ] 472 ]
471 } 473 }
472 } 474 }
OLDNEW
« no previous file with comments | « chrome/utility/extensions/extensions_handler.cc ('k') | extensions/browser/updater/safe_manifest_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698