OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 # 64-bit target, but it doesn't work due to a bug in gyp | 355 # 64-bit target, but it doesn't work due to a bug in gyp |
356 'direct_dependent_settings': { | 356 'direct_dependent_settings': { |
357 'include_dirs': [ | 357 'include_dirs': [ |
358 '..', | 358 '..', |
359 ], | 359 ], |
360 }, | 360 }, |
361 # Conditions that are not relevant for Win64 build | 361 # Conditions that are not relevant for Win64 build |
362 'conditions': [ | 362 'conditions': [ |
363 [ 'OS == "linux" or OS == "freebsd"', { | 363 [ 'OS == "linux" or OS == "freebsd"', { |
364 'conditions': [ | 364 'conditions': [ |
365 [ 'chromeos==1 or toolkit_views==1', { | 365 [ 'chromeos==1', { |
366 'sources/': [ ['include', '_chromeos\\.cc$'] ] | 366 'sources/': [ ['include', '_chromeos\\.cc$'] ] |
367 }, | 367 }, |
368 ], | 368 ], |
369 [ 'linux_use_tcmalloc==1', { | 369 [ 'linux_use_tcmalloc==1', { |
370 'defines': [ | 370 'defines': [ |
371 'LINUX_USE_TCMALLOC', | 371 'LINUX_USE_TCMALLOC', |
372 ], | 372 ], |
373 'direct_dependent_settings': { | 373 'direct_dependent_settings': { |
374 'defines': [ | 374 'defines': [ |
375 'LINUX_USE_TCMALLOC', | 375 'LINUX_USE_TCMALLOC', |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 'configurations': { | 586 'configurations': { |
587 'Common': { | 587 'Common': { |
588 'msvs_target_platform': 'x64', | 588 'msvs_target_platform': 'x64', |
589 }, | 589 }, |
590 }, | 590 }, |
591 }, | 591 }, |
592 ], | 592 ], |
593 }], | 593 }], |
594 ], | 594 ], |
595 } | 595 } |
OLD | NEW |