Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("service") { | 5 source_set("service") { |
| 6 visibility = [ | 6 visibility = [ |
| 7 "//media/*", | 7 "//media/*", |
| 8 "//content/gpu/*", | 8 "//content/gpu/*", |
| 9 "//content/public/gpu/*", | 9 "//content/public/gpu/*", |
| 10 "//services/ui/gpu/*", | 10 "//services/ui/gpu/*", |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 31 "//ipc", | 31 "//ipc", |
| 32 "//media", | 32 "//media", |
| 33 "//media/gpu", | 33 "//media/gpu", |
| 34 ] | 34 ] |
| 35 deps = [ | 35 deps = [ |
| 36 "//gpu/ipc/service", | 36 "//gpu/ipc/service", |
| 37 "//media/gpu/ipc/common", | 37 "//media/gpu/ipc/common", |
| 38 "//third_party/mesa:mesa_headers", | 38 "//third_party/mesa:mesa_headers", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 public_configs = [ "//media/gpu:gpu_config" ] | |
|
wuchengli
2016/07/12 11:39:51
s/public_configs/configs/. We don't need to propag
wuchengli
2016/07/12 15:00:55
I found why media/gpu/ipc/client/BUILD.gn used pub
henryhsu
2016/07/13 03:29:59
Done.
| |
| 42 | |
| 41 if (is_chromeos && current_cpu != "arm") { | 43 if (is_chromeos && current_cpu != "arm") { |
| 42 configs += [ "//third_party/libva:libva_config" ] | 44 configs += [ "//third_party/libva:libva_config" ] |
| 43 } | 45 } |
| 44 | 46 |
| 45 if (is_win) { | 47 if (is_win) { |
| 46 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 47 } | 49 } |
| 48 | 50 |
| 49 if (is_mac) { | 51 if (is_mac) { |
| 50 deps += [ "//third_party/webrtc/common_video:common_video" ] | 52 deps += [ "//third_party/webrtc/common_video:common_video" ] |
| 51 } | 53 } |
| 52 } | 54 } |
| OLD | NEW |