| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//chrome/version.gni") # TODO layering violation! | 5 import("//chrome/version.gni") # TODO layering violation! |
| 6 import("//chromecast/chromecast.gni") | 6 import("//chromecast/chromecast.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("base") { | 9 source_set("base") { |
| 10 sources = [ | 10 sources = [ |
| 11 "cast_paths.cc", | 11 "cast_paths.cc", |
| 12 "cast_paths.h", | 12 "cast_paths.h", |
| 13 "chromecast_switches.cc", | 13 "chromecast_switches.cc", |
| 14 "chromecast_switches.h", | 14 "chromecast_switches.h", |
| 15 "error_codes.cc", | 15 "error_codes.cc", |
| 16 "error_codes.h", | 16 "error_codes.h", |
| 17 "path_utils.cc", | 17 "path_utils.cc", |
| 18 "path_utils.h", | 18 "path_utils.h", |
| 19 "process_utils.cc", | 19 "process_utils.cc", |
| 20 "process_utils.h", | 20 "process_utils.h", |
| 21 "serializers.cc", | 21 "serializers.cc", |
| 22 "serializers.h", | 22 "serializers.h", |
| 23 "task_runner_impl.cc", |
| 24 "task_runner_impl.h", |
| 23 ] | 25 ] |
| 24 | 26 |
| 25 configs += [ "//chromecast:config" ] | 27 configs += [ "//chromecast:config" ] |
| 26 | 28 |
| 27 public_deps = [ | 29 public_deps = [ |
| 28 "//chromecast/base/metrics", | 30 "//chromecast/base/metrics", |
| 29 ] | 31 ] |
| 30 | 32 |
| 31 deps = [ | 33 deps = [ |
| 32 "//base", | 34 "//base", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "-e", | 82 "-e", |
| 81 "CAST_BUILD_INCREMENTAL=20150608.181153", | 83 "CAST_BUILD_INCREMENTAL=20150608.181153", |
| 82 "-e", | 84 "-e", |
| 83 "CAST_BUILD_RELEASE=1.15", | 85 "CAST_BUILD_RELEASE=1.15", |
| 84 "-e", | 86 "-e", |
| 85 "CAST_IS_DEBUG_BUILD=1", | 87 "CAST_IS_DEBUG_BUILD=1", |
| 86 "-e", | 88 "-e", |
| 87 "CAST_PRODUCT_TYPE=0", | 89 "CAST_PRODUCT_TYPE=0", |
| 88 ] | 90 ] |
| 89 } | 91 } |
| OLD | NEW |