OLD | NEW |
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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'android_support_v13_target%': | 7 'android_support_v13_target%': |
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java
lib', | 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java
lib', |
9 'cast_build_release': 'internal/build/cast_build_release', | 9 'cast_build_release': 'internal/build/cast_build_release', |
10 'cast_is_debug_build%': 0, | 10 'cast_is_debug_build%': 0, |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 ] | 96 ] |
97 }, # end of target 'cast_crash_client' | 97 }, # end of target 'cast_crash_client' |
98 { | 98 { |
99 'target_name': 'cast_net', | 99 'target_name': 'cast_net', |
100 'type': '<(component)', | 100 'type': '<(component)', |
101 'sources': [ | 101 'sources': [ |
102 'net/connectivity_checker.cc', | 102 'net/connectivity_checker.cc', |
103 'net/connectivity_checker.h', | 103 'net/connectivity_checker.h', |
104 'net/net_switches.cc', | 104 'net/net_switches.cc', |
105 'net/net_switches.h', | 105 'net/net_switches.h', |
| 106 'net/net_util_cast.cc', |
| 107 'net/net_util_cast.h', |
| 108 ], |
| 109 'conditions': [ |
| 110 ['OS!="android"', { |
| 111 'sources': [ |
| 112 'net/network_change_notifier_factory_cast.cc', |
| 113 'net/network_change_notifier_factory_cast.h', |
| 114 ], |
| 115 }], |
106 ], | 116 ], |
107 }, | 117 }, |
108 { | 118 { |
109 'target_name': 'cast_shell_resources', | 119 'target_name': 'cast_shell_resources', |
110 'type': 'none', | 120 'type': 'none', |
111 'variables': { | 121 'variables': { |
112 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chromecast', | 122 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chromecast', |
113 }, | 123 }, |
114 'actions': [ | 124 'actions': [ |
115 { | 125 { |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 'sources': [ | 639 'sources': [ |
630 'graphics/cast_egl_platform_default.cc', | 640 'graphics/cast_egl_platform_default.cc', |
631 'graphics/graphics_properties_default.cc', | 641 'graphics/graphics_properties_default.cc', |
632 'graphics/osd_plane_default.cc' | 642 'graphics/osd_plane_default.cc' |
633 ], | 643 ], |
634 } | 644 } |
635 ] | 645 ] |
636 }], | 646 }], |
637 ], # end of conditions | 647 ], # end of conditions |
638 } | 648 } |
OLD | NEW |