OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_common_target': 0, | 8 'chrome_common_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 ], | 258 ], |
259 'link_settings': { | 259 'link_settings': { |
260 'libraries': [ | 260 'libraries': [ |
261 '-lX11', | 261 '-lX11', |
262 '-lXrender', | 262 '-lXrender', |
263 '-lXss', | 263 '-lXss', |
264 '-lXext', | 264 '-lXext', |
265 ], | 265 ], |
266 }, | 266 }, |
267 },], | 267 },], |
| 268 ['toolkit_views==1', { |
| 269 'sources': [ |
| 270 'common/native_web_keyboard_event_views.cc', |
| 271 'common/native_web_keyboard_event_views.h', |
| 272 ], |
| 273 }], |
268 ['os_posix == 1 and OS != "mac"', { | 274 ['os_posix == 1 and OS != "mac"', { |
269 'include_dirs': [ | 275 'include_dirs': [ |
270 '<(SHARED_INTERMEDIATE_DIR)', | 276 '<(SHARED_INTERMEDIATE_DIR)', |
271 ], | 277 ], |
272 # Because posix_version generates a header, we must set the | 278 # Because posix_version generates a header, we must set the |
273 # hard_dependency flag. | 279 # hard_dependency flag. |
274 'hard_dependency': 1, | 280 'hard_dependency': 1, |
275 'actions': [ | 281 'actions': [ |
276 { | 282 { |
277 'action_name': 'posix_version', | 283 'action_name': 'posix_version', |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 'configurations': { | 490 'configurations': { |
485 'Common_Base': { | 491 'Common_Base': { |
486 'msvs_target_platform': 'x64', | 492 'msvs_target_platform': 'x64', |
487 }, | 493 }, |
488 }, | 494 }, |
489 }, | 495 }, |
490 ], | 496 ], |
491 }], | 497 }], |
492 ], | 498 ], |
493 } | 499 } |
OLD | NEW |