- add sources.
[platform/framework/web/crosswalk.git] / src / tools / gn / secondary / build / config / BUILD.gn
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 config("my_msvs") {
6   defines = [
7       "CHROMIUM_BUILD",
8       "TOOLKIT_VIEWS=1",
9       "USE_LIBJPEG_TURBO=1",
10       "ENABLE_ONE_CLICK_SIGNIN",
11       "ENABLE_REMOTING=1",
12       "ENABLE_WEBRTC=1",
13       "ENABLE_CONFIGURATION_POLICY",
14       "ENABLE_INPUT_SPEECH",
15       "ENABLE_NOTIFICATIONS",
16       "ENABLE_EGLIMAGE=1",
17       "ENABLE_TASK_MANAGER=1",
18       "ENABLE_EXTENSIONS=1",
19       "ENABLE_PLUGIN_INSTALLATION=1",
20       "ENABLE_PLUGINS=1",
21       "ENABLE_SESSION_SERVICE=1",
22       "ENABLE_THEMES=1",
23       "ENABLE_AUTOFILL_DIALOG=1",
24       "ENABLE_BACKGROUND=1",
25       "ENABLE_AUTOMATION=1",
26       "ENABLE_GOOGLE_NOW=1",
27       "ENABLE_PRINTING=1",
28       "ENABLE_CAPTIVE_PORTAL_DETECTION=1",
29       "ENABLE_APP_LIST=1",
30       "ENABLE_MESSAGE_CENTER=1",
31       "ENABLE_SETTINGS_APP=1",
32       "ENABLE_MANAGED_USERS=1",
33   ]
34 }
35
36 config("feature_flags") {
37   #defines = 
38 }
39
40 config("debug") {
41   defines = [
42     "_DEBUG",
43     "DYNAMIC_ANNOTATIONS_ENABLED=1",
44     "WTF_USE_DYNAMIC_ANNOTATIONS=1",
45   ]
46 }
47
48 config("release") {
49
50 }