Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, # variables | 8 }, # variables |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['enable_webrtc==1 or (OS != "ios" and OS != "android")', { | 10 ['enable_webrtc==1 or (OS != "ios" and OS != "android")', { |
| 11 'targets': [ | 11 'targets': [ |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 105 'defines' : [ | 105 'defines' : [ |
| 106 '_CRT_SECURE_NO_WARNINGS', | 106 '_CRT_SECURE_NO_WARNINGS', |
| 107 '_USE_32BIT_TIME_T', | 107 '_USE_32BIT_TIME_T', |
| 108 ], | 108 ], |
| 109 'dependencies': [ | 109 'dependencies': [ |
| 110 '../base/base.gyp:base', | 110 '../base/base.gyp:base', |
| 111 '../build/temp_gyp/googleurl.gyp:googleurl', | 111 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 112 '../net/net.gyp:net', | 112 '../net/net.gyp:net', |
| 113 '../third_party/expat/expat.gyp:expat', | 113 '../third_party/expat/expat.gyp:expat', |
| 114 '../third_party/libjingle/libjingle.gyp:libjingle', | 114 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 115 'jingle_glue', | |
|
akalin
2013/01/07 20:14:51
can you list one direct dep here for posterity?
Raghu Simha
2013/01/08 11:27:48
Sure. For example, notifier/base/xmpp_connection.c
| |
| 115 ], | 116 ], |
| 116 'export_dependent_settings': [ | 117 'export_dependent_settings': [ |
| 117 '../third_party/libjingle/libjingle.gyp:libjingle', | 118 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 118 ], | 119 ], |
| 119 'conditions': [ | 120 'conditions': [ |
| 120 ['toolkit_uses_gtk == 1', { | 121 ['toolkit_uses_gtk == 1', { |
| 121 'dependencies': [ | 122 'dependencies': [ |
| 122 '../build/linux/system.gyp:gtk' | 123 '../build/linux/system.gyp:gtk' |
| 123 ], | 124 ], |
| 124 }], | 125 }], |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 242 ], | 243 ], |
| 243 }, | 244 }, |
| 244 { | 245 { |
| 245 'target_name': 'notifier_test_util', | 246 'target_name': 'notifier_test_util', |
| 246 'type': 'none', | 247 'type': 'none', |
| 247 }, | 248 }, |
| 248 ], | 249 ], |
| 249 }], | 250 }], |
| 250 ], | 251 ], |
| 251 } | 252 } |
| OLD | NEW |