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

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

Issue 652793002: Add service registration for apps APIs implemented as mojo services. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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
« no previous file with comments | « no previous file | extensions/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 "install/crx_installer_error.h", 399 "install/crx_installer_error.h",
400 "install/extension_install_ui.cc", 400 "install/extension_install_ui.cc",
401 "install/extension_install_ui.h", 401 "install/extension_install_ui.h",
402 "install_flag.h", 402 "install_flag.h",
403 "lazy_background_task_queue.cc", 403 "lazy_background_task_queue.cc",
404 "lazy_background_task_queue.h", 404 "lazy_background_task_queue.h",
405 "management_policy.cc", 405 "management_policy.cc",
406 "management_policy.h", 406 "management_policy.h",
407 "mojo/keep_alive_impl.cc", 407 "mojo/keep_alive_impl.cc",
408 "mojo/keep_alive_impl.h", 408 "mojo/keep_alive_impl.h",
409 "mojo/service_registration_manager.cc",
410 "mojo/service_registration_manager.h",
409 "mojo/stash_backend.cc", 411 "mojo/stash_backend.cc",
410 "mojo/stash_backend.h", 412 "mojo/stash_backend.h",
411 "pref_names.cc", 413 "pref_names.cc",
412 "pref_names.h", 414 "pref_names.h",
413 "process_manager.cc", 415 "process_manager.cc",
414 "process_manager.h", 416 "process_manager.h",
415 "process_manager_delegate.h", 417 "process_manager_delegate.h",
416 "process_manager_observer.h", 418 "process_manager_observer.h",
417 "process_map.cc", 419 "process_map.cc",
418 "process_map.h", 420 "process_map.h",
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 ] 493 ]
492 } 494 }
493 } 495 }
494 496
495 if (is_win) { 497 if (is_win) {
496 cflags = [ 498 cflags = [
497 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 499 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
498 ] 500 ]
499 } 501 }
500 } 502 }
OLDNEW
« no previous file with comments | « no previous file | extensions/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698