OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 'webthemeengine_impl_win.cc', | 356 'webthemeengine_impl_win.cc', |
357 'webthemeengine_impl_win.h', | 357 'webthemeengine_impl_win.h', |
358 'webthread_impl.h', | 358 'webthread_impl.h', |
359 'webthread_impl.cc', | 359 'webthread_impl.cc', |
360 'weburlloader_impl.cc', | 360 'weburlloader_impl.cc', |
361 'weburlloader_impl.h', | 361 'weburlloader_impl.h', |
362 'weburlrequest_extradata_impl.cc', | 362 'weburlrequest_extradata_impl.cc', |
363 'weburlrequest_extradata_impl.h', | 363 'weburlrequest_extradata_impl.h', |
364 'weburlresponse_extradata_impl.cc', | 364 'weburlresponse_extradata_impl.cc', |
365 'weburlresponse_extradata_impl.h', | 365 'weburlresponse_extradata_impl.h', |
366 'web_intent_data.cc', | |
367 'web_intent_data.h', | |
368 'web_intent_reply_data.cc', | |
369 'web_intent_reply_data.h', | |
370 'web_intent_service_data.cc', | |
371 'web_intent_service_data.h', | |
372 'web_io_operators.cc', | 366 'web_io_operators.cc', |
373 'web_io_operators.h', | 367 'web_io_operators.h', |
374 'worker_task_runner.cc', | 368 'worker_task_runner.cc', |
375 'worker_task_runner.h', | 369 'worker_task_runner.h', |
376 ], | 370 ], |
377 # When glue is a dependency, it needs to be a hard dependency. | 371 # When glue is a dependency, it needs to be a hard dependency. |
378 # Dependents may rely on files generated by this target or one of its | 372 # Dependents may rely on files generated by this target or one of its |
379 # own hard dependencies. | 373 # own hard dependencies. |
380 'hard_dependency': 1, | 374 'hard_dependency': 1, |
381 'conditions': [ | 375 'conditions': [ |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 ['use_aura==1 and use_x11==1', { | 413 ['use_aura==1 and use_x11==1', { |
420 'link_settings': { | 414 'link_settings': { |
421 'libraries': [ '-lXcursor', ], | 415 'libraries': [ '-lXcursor', ], |
422 }, | 416 }, |
423 }], | 417 }], |
424 ['use_aura==1 and OS=="win"', { | 418 ['use_aura==1 and OS=="win"', { |
425 'sources/': [ | 419 'sources/': [ |
426 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_aura'], | 420 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_aura'], |
427 ], | 421 ], |
428 }], | 422 }], |
429 ['enable_web_intents==0', { | |
430 'sources!': [ | |
431 'web_intent_data.cc', | |
432 'web_intent_data.h', | |
433 'web_intent_reply_data.cc', | |
434 'web_intent_reply_data.h', | |
435 'web_intent_service_data.cc', | |
436 'web_intent_service_data.h', | |
437 ], | |
438 }], | |
439 ['OS!="mac"', { | 423 ['OS!="mac"', { |
440 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 424 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
441 'sources!': [ | 425 'sources!': [ |
442 'webthemeengine_impl_mac.cc', | 426 'webthemeengine_impl_mac.cc', |
443 ], | 427 ], |
444 }, { # else: OS=="mac" | 428 }, { # else: OS=="mac" |
445 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 429 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
446 'link_settings': { | 430 'link_settings': { |
447 'libraries': [ | 431 'libraries': [ |
448 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 432 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 }, | 492 }, |
509 'includes': [ '../../build/grit_action.gypi' ], | 493 'includes': [ '../../build/grit_action.gypi' ], |
510 }, | 494 }, |
511 ], | 495 ], |
512 'includes': [ '../../build/grit_target.gypi' ], | 496 'includes': [ '../../build/grit_target.gypi' ], |
513 }, | 497 }, |
514 ], | 498 ], |
515 }], | 499 }], |
516 ], | 500 ], |
517 } | 501 } |
OLD | NEW |