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

Unified Diff: extensions/browser/api/audio/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: win fix Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/api/audio/BUILD.gn
diff --git a/components/printing/browser/BUILD.gn b/extensions/browser/api/audio/BUILD.gn
similarity index 51%
copy from components/printing/browser/BUILD.gn
copy to extensions/browser/api/audio/BUILD.gn
index bddd3a67d52f7af953ffed21aad12bb33ddf0f4d..c6af7f3e1322dcc1b6dab0f6e36b6e4912594a3a 100644
--- a/components/printing/browser/BUILD.gn
+++ b/extensions/browser/api/audio/BUILD.gn
@@ -1,19 +1,21 @@
# Copyright 2015 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.
-
-static_library("browser") {
+source_set("audio") {
sources = [
- "print_manager.cc",
- "print_manager.h",
- "print_manager_utils.cc",
- "print_manager_utils.h",
+ "audio_api.cc",
+ "audio_api.h",
+ "audio_service.h",
]
deps = [
- "//base",
- "//components/printing/common",
"//content/public/browser",
- "//printing",
+ "//skia",
]
+
+ if (is_chromeos) {
+ sources += [ "audio_service_chromeos.cc" ]
+ } else {
+ sources += [ "audio_service.cc" ]
+ }
}

Powered by Google App Engine
This is Rietveld 408576698