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

Side by Side Diff: media/cast/BUILD.gn

Issue 1983443002: mac/gn: Make a bunch of targets build in release component builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format Created 4 years, 7 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
« no previous file with comments | « gpu/BUILD.gn ('k') | rlz/BUILD.gn » ('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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 "//base", 536 "//base",
537 "//media", 537 "//media",
538 ] 538 ]
539 } 539 }
540 } 540 }
541 541
542 # Projects external to Chromium can build cast_sender and/or cast_receiver to 542 # Projects external to Chromium can build cast_sender and/or cast_receiver to
543 # produce libraries to link with their applications. Chromium targets should 543 # produce libraries to link with their applications. Chromium targets should
544 # not reference these. 544 # not reference these.
545 545
546 static_library("cast_sender") { 546 group("cast_sender") {
Nico 2016/05/13 21:03:47 actually, i think this change is wrong
547 deps = [ 547 deps = [
548 ":sender", 548 ":sender",
549 ] 549 ]
550 } 550 }
551 551
552 static_library("cast_receiver") { 552 group("cast_receiver") {
553 deps = [ 553 deps = [
554 ":receiver", 554 ":receiver",
555 ] 555 ]
556 } 556 }
OLDNEW
« no previous file with comments | « gpu/BUILD.gn ('k') | rlz/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698