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

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

Issue 2635153002: Pref service: expose all read-only PrefStores through Mojo (Closed)
Patch Set: Create and register service Created 3 years, 10 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 # 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 "//media/midi", 1547 "//media/midi",
1548 "//mojo/common", 1548 "//mojo/common",
1549 "//mojo/edk/system", 1549 "//mojo/edk/system",
1550 "//mojo/public/cpp/bindings", 1550 "//mojo/public/cpp/bindings",
1551 "//mojo/public/js", 1551 "//mojo/public/js",
1552 "//net:extras", 1552 "//net:extras",
1553 "//ppapi/features", 1553 "//ppapi/features",
1554 "//printing/features", 1554 "//printing/features",
1555 "//rlz/features", 1555 "//rlz/features",
1556 "//services/image_decoder/public/cpp", 1556 "//services/image_decoder/public/cpp",
1557 "//services/preferences/public/cpp/",
1557 "//services/preferences/public/interfaces/", 1558 "//services/preferences/public/interfaces/",
1558 "//services/service_manager/public/cpp", 1559 "//services/service_manager/public/cpp",
1559 "//services/shape_detection/public/interfaces", 1560 "//services/shape_detection/public/interfaces",
1560 "//skia", 1561 "//skia",
1561 "//sql", 1562 "//sql",
1562 "//storage/browser", 1563 "//storage/browser",
1563 "//storage/common", 1564 "//storage/common",
1564 "//third_party/WebKit/public:features", 1565 "//third_party/WebKit/public:features",
1565 "//third_party/WebKit/public:image_resources", 1566 "//third_party/WebKit/public:image_resources",
1566 "//third_party/WebKit/public:resources", 1567 "//third_party/WebKit/public:resources",
(...skipping 2964 matching lines...) Expand 10 before | Expand all | Expand 10 after
4531 "media/pepper_cdm_test_constants.cc", 4532 "media/pepper_cdm_test_constants.cc",
4532 "media/pepper_cdm_test_constants.h", 4533 "media/pepper_cdm_test_constants.h",
4533 ] 4534 ]
4534 } 4535 }
4535 } 4536 }
4536 4537
4537 service_manifest("preferences_manifest") { 4538 service_manifest("preferences_manifest") {
4538 name = "preferences" 4539 name = "preferences"
4539 source = "prefs/preferences_manifest.json" 4540 source = "prefs/preferences_manifest.json"
4540 } 4541 }
4542
4543 service_manifest("preferences2_manifest") {
4544 name = "preferences2"
4545 source = "prefs/preferences2_manifest.json"
4546 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698