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 # This config is applied to internal Angle targets (not pushed to dependents). | 5 # This config is applied to internal Angle targets (not pushed to dependents). |
6 config("internal_config") { | 6 config("internal_config") { |
7 include_dirs = [ | 7 include_dirs = [ |
8 "include", | 8 "include", |
9 "src", | 9 "src", |
10 ] | 10 ] |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 "src/libEGL/resource.h", | 561 "src/libEGL/resource.h", |
562 ] | 562 ] |
563 | 563 |
564 configs -= [ "//build/config/compiler:chromium_code" ] | 564 configs -= [ "//build/config/compiler:chromium_code" ] |
565 configs += [ | 565 configs += [ |
566 ":internal_config", | 566 ":internal_config", |
567 "//build/config/compiler:no_chromium_code", | 567 "//build/config/compiler:no_chromium_code", |
568 ] | 568 ] |
569 | 569 |
570 if (is_debug) { | 570 if (is_debug) { |
571 defines += [ "ANGLE_ENABLE_PERF" ] | 571 defines = [ "ANGLE_ENABLE_PERF" ] |
572 } | 572 } |
573 | 573 |
574 include_dirs = [ "src/libGLESv2" ] | 574 include_dirs = [ "src/libGLESv2" ] |
575 libs = [ "d3d9.lib" ] | 575 libs = [ "d3d9.lib" ] |
576 | 576 |
577 deps = [ | 577 deps = [ |
578 ":commit_id", | 578 ":commit_id", |
579 ":includes", | 579 ":includes", |
580 ":libGLESv2", | 580 ":libGLESv2", |
581 ] | 581 ] |
582 } | 582 } |
583 } # is_win | 583 } # is_win |
OLD | NEW |